$('nav a').click(function(){
e.preventDefault();
var id = $(this).attr('href'),
targetOffaset = $(id).offset().top,
menuHeight = $('nav').innerHeight();
$('html, body').animate({
scrollTop: targetOffaset -59
}, 500);
});