$(window).bind("load", function() {
	$("div#main_banner_area").slideViewerPro({
		thumbs: 4, 
		autoslide: true, 
		asTimer: 10000, 
		typo: true,
		galBorderWidth: 0,
		buttonsTextColor: "#707070",
		buttonsWidth: 20,
		thumbsActiveBorderOpacity: 1,
		thumbsActiveBorderColor: "aqua",
		thumbsPercentReduction: 21,
		galBorderWidth: 0,
		galBorderColor: "aqua",
		thumbsTopMargin: 7,
		thumbsRightMargin: 8,
		thumbsBorderWidth: 4,
		thumbsActiveBorderColor: "#f39800",
		thumbsActiveBorderOpacity: 0.8,
		thumbsBorderOpacity: 0, 
		leftButtonInner: "<img src='img/top/slide_left_btn.gif' />",
		rightButtonInner: "<img src='img/top/slide_right_btn.gif' />",
		autoslide: true, 
		typo: false
	});
});

//ショップ
$(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); }
			);
		});
	};	
