$(function(){
  $('.ancLinks').bind('click',function(){
    var speed = 1100; // Скорость движения
    if($(this).attr('href')=='#down'){
      $('html').animate({scrollTop:$(document).height()}, speed,'swing');
      $('body').animate({scrollTop:$(document).height()}, speed,'swing');
    } else if($(this).attr('href')=='#top'){
      $('html').animate({scrollTop:0}, speed,'swing');
      $('body').animate({scrollTop:0}, speed,'swing');
    } else {
      $('html').animate({scrollTop: $(this.hash).offset().top-20}, speed,'swing');
      $('body').animate({scrollTop: $(this.hash).offset().top-20}, speed,'swing');
    }
    return false;
  });
});
