$(function(){
	$("#page_top a").click(function(){
		var Hash = $(this.hash);
		var HashOffset = $(Hash).offset().top;
		$("html,body").animate({
			scrollTop: HashOffset
		}, 1000);
		return false;
	});
});



// IDを特定しない時はこちら
//$(function(){
//	$("a[href^=#]").click(function(){
//		var Hash = $(this.hash);
//		var HashOffset = $(Hash).offset().top;
//		$("html,body").animate({
//			scrollTop: HashOffset
//		}, 1000);
//		return false;
//	});
//});

