$("nav a").click(function() {
$('nav').slideUp('200');
var elementClick = $(this).attr("href")
var destination = $(elementClick).offset().top;
$("html:not(:animated),body:not(:animated)").animate({
scrollTop: destination
}, 1200);
return false;
});
var destination = $(elementClick).offset().top-50;