Igorsrt, попробуйте этот код:
$(function(){
if(location.hash.length){
var target=$('[name="'+location.hash.substr(1)+'"]');
if(!target.length)
target=$(location.hash);
if(target.length)
$('html,body').animate({
scrollTop:target.offset().top
},300);
};
});