$(window).bind("load", function() {
	$("div#main_banner_area").slideViewerPro({
		thumbs: 4, // サムネールを出す数
		autoslide: true,//デフォルトは自動的にスライドしない。trueにの場合は、jquery.timersプラグインが必要 
		asTimer: 5000, //スライドスピード小さいほど遅い
		typo: true,//各スライドの印刷上の情報。 trueに設定すると、ALTタグの内容が表示されます
		galBorderWidth: 0,// メイン画像の境界線の幅
		buttonsTextColor: "#000000", //leftButtonInner/ rightButtonInnerのオプションのテキストの色
		buttonsWidth: 20,//could be 0, 0.1 up to 1.0
		thumbsActiveBorderOpacity: 1,//could be 0, 0.1 up to 1.0
		thumbsActiveBorderColor: "aqua",//現在のサムネイルの枠線の色
		thumbsPercentReduction: 23,//
		galBorderWidth: 0,//メイン画像の境界線の幅
		galBorderColor: "aqua",//メイン画像の境界線の色
		thumbsTopMargin: 12,//メイン画像からサムネイルのマージン
		thumbsRightMargin: 4,//サムネイル間の右マージン
		thumbsBorderWidth: 3,//サムネイル枠幅
		thumbsActiveBorderColor: "#9ddffe",//サムネイル枠色
		thumbsActiveBorderOpacity: 0.8,//サムネイルアクティブ枠色透明度max1.0
		thumbsBorderOpacity: 0,//サムネイル枠色透明度max1.0
		leftButtonInner: "<img src='/system/kenkyu/img/top/slider/slide_left_btn.gif' />",//
		rightButtonInner: "<img src='/system/kenkyu/img/top/slider/slide_right_btn.gif' />",//
		autoslide: true, //デフォルトでは、スライダーが自動的にスライドしないでください。 trueに設定されている場合は、jquery.timersプラグインが必要です
		typo: false//各スライドの印刷上の情報。 trueに設定すると、ALTタグの内容が表示されます
	});
});

//ショップ
$(document).ready(function(){
		$(".shop").hover(
			function(){ $(".shop", this).fadeIn("fast"); }, 
			function() { } 
		);
	if (document.all) {
			$(".shop").hoverClass ("sfHover");
		}
  });
  
	$.fn.hoverClass = function(c) {
		return this.each(function(){
			$(this).hover( 
				function() { $(this).addClass(c);  },
				function() { $(this).removeClass(c); }
			);
		});
	};	
