/* a.page-scroll is your manu link class */
$(\'a.page-scroll\').bind(\'click\', function(event) {
var $anchor = $(this);
$(\'html, body\').stop().animate({
scrollTop: $($anchor.attr(\'href\')).offset().top()
}, 1500, \'easeInOutExpo\');
event.preventDefault();
});