
//スライドショー

$(document).ready(
	function(){
		$('#gallery').innerfade({
			speed: 1000,
			timeout: 4000,
			type: 'sequence',
			containerheight: '340px'
		});
	}
);



//ページスクロール
$(function(){
	$("a[href^=#]").click(function(){
		var Hash = $(this.hash);
		var HashOffset = $(Hash).offset().top;
		$("html,body").animate({
			scrollTop: HashOffset
		}, 800);
		return false;
	});
});

