// JavaScript Document

$(function(){
	$("a[href^=#]").click(function(){
		var elmID = $(this).attr("href");
		var posi = $(elmID).offset().top;
		$("html,body").animate({
			scrollTop: posi
		}, 1000);
		return false;
	});
});
