$(document).ready(function() {
	$('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			$target = $(this.hash);
			$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
			$targetOffset = ($target[0] != $()[0] && $target.length ? $target.offset().top : 0);	
			$('html,body').animate({scrollTop: $targetOffset}, 1000);
			return false;
		}
	});
});