jQuery(function() {
	jQuery('a').bind('click',function(event){
		var $anchor = jQuery(this);
        
		jQuery('html, body').stop().animate({
		scrollTop: jQuery($anchor.attr('href')).offset().top
        }, 1000,'easeInOutExpo');
        event.preventDefault();
    });
});
