jQuery(function($) {
	$('a[href^="#"]').click(function() {
		$('html:not(:animated), body:not(:animated)').animate({ scrollTop: $($(this).attr('href')).offset().top}, 'slow', 'swing' );
		return false;
	});
});