$('a[href^="#"]').click(function () {
elementClick = $(this).attr("href");
destination = $(elementClick).offset().top-120;
if($.browser.safari){
$('body').animate( { scrollTop: destination }, 500 );
}else{
$('html').animate( { scrollTop: destination }, 500 );
}
return false;
});