smoth scroll to section on click menu link
$("nav a").on('click', function(e) { e.preventDefault(); var pos = $($(this).attr('href')); $('html, body').animate({ scrollTop: pos.offset().top }, 1000); });