//JQuery

$(function(){
	//スライドして表示・非表示
	$(".open1").click(function(){
		$("#Box1").slideToggle("slow");
	});
	$(".open2").click(function(){
		$("#Box2").slideToggle("slow");
	});
	$(".open3").click(function(){
		$("#Box3").slideToggle("slow");
	});
	$(".open4").click(function(){
		$("#Box4").slideToggle("slow");
	});
	$(".open5").click(function(){
		$("#Box5").slideToggle("slow");
	});

	//ロールオーバ
	$('#header img').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('_off', '_on'));
	},
	function(){
		if (!$(this).hasClass('currentPage')) {
			$(this).attr('src', $(this).attr('src').replace('_on', '_off'));
		}
	});

	//ページ内移動（NEWS）
	$('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			var $target = $(this.hash);
			$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
			if ($target.length) {
				var targetOffset = $target.offset().top;
				$('html,body').animate({scrollTop: targetOffset}, 1000);
				return false;
			}
		}
	});

});

