$(document).ready(function() {
if(window.location.hash)
headerHeight = $('header').height() + 50;
$('html, body').animate({
scrollTop: $(window.location.hash).offset().top - headerHeight
}, 1000);
}
);