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