jQuery(function(){
	
	
	// スクロール
	$('#indexNews ,#newEvent ,#guestList ,#manegementList').jScrollPane();
	
	// blank指定
	$("a.blank").attr("target", "_blank");

	//各ボタンhover
	$("img, input:image")
		.hover(
			function () {
				//透過対象の画像でない場合
				if ($(this).attr("src").match(/blank.gif/) == null) {
					$(this).attr("src", $(this).attr("src").replace(/\/on|off\/(.*?\.(:?gif|jpg|png))/, '/on/$1'));
				}
			},
			function () {
				//透過対象の画像でない場合
				if ($(this).attr("src").match(/blank.gif/) == null) {
					$(this).attr("src", $(this).attr("src").replace(/\/on|off\/(.*?\.gif|jpg|png)/, '/off/$1'));
				}
			}
		)
	;
	
	// イベント詳細説明toggle
	$('#EIbox .EIboxBtn_matter').hide();
	$('#EIbox h4.EIboxBtn').toggle(
		function(){
			$(this).addClass("active");
			}, 
		function () {
			$(this).removeClass("active");
			}
		)
	;
	$('#EIbox h4.EIboxBtn').click(
		function(){
			$(this).next('#EIbox .EIboxBtn_matter').slideToggle('slow');
			}
		)
	;


});

function building(){
	alert("こちらのページは現在、製作中です。\n\n出来上がりましたらトップページでお知らせいたします。");
}
