$(document).ready(function(){
	
	// メイン画面初期設定
	$('.mainPh').css({"display":"none"});
	$('.mainPh:eq(0)').css({"display":"block"});
	
	// 業態別検索設定
	$('.tabBlc').css({"display":"none"});
	$('.tabBlc:eq(0)').css({"display":"block"});
	$('.tabNav01 a').css({"backgroundImage":"url('images/top/tab_nav_04_on.gif')"});
	
	// 商材ランキング設定
	$('.fragBlc').css({"display":"none"});
	$('.fragBlc:eq(0)').css({"display":"block"});
	$('.ui-tabs-nav li:eq(0) a').css({"backgroundPosition":"0 150px"});
	
	
	
	// メイン画面動作設定
	$(".mainImgNav li:eq(0) a").mouseover(function(){
		$('#mainPh02,#mainPh03').css({"zIndex":"1"}).fadeOut();
		$('#mainPh01').css({"zIndex":"100"}).fadeIn();
	});
	
	$(".mainImgNav li:eq(1) a").mouseover(function(){
		$('#mainPh01,#mainPh03').css({"zIndex":"1"}).fadeOut();
		$('#mainPh02').css({"zIndex":"100"}).fadeIn();
	});
	
	$(".mainImgNav li:eq(2) a").mouseover(function(){
		$('#mainPh01,#mainPh02').css({"zIndex":"1"}).fadeOut();
		$('#mainPh03').css({"zIndex":"100"}).fadeIn();
	});
	
	
	
	// 業態別検索動作設定
	$(".tabNav01 a").click(function(){
		$(this).css({"backgroundImage":"url('images/top/tab_nav_04_on.gif')"});
		$(".tabNav02 a").removeAttr("style");
		$(".tabNav03 a").removeAttr("style");
		$(".tabNav04 a").removeAttr("style");
		$('#tab2,#tab3,#tab4').css({"zIndex":"1"}).fadeOut();
		$('#tab1').css({"zIndex":"100"}).fadeIn();
			$(this).click(function(){
				$(this).attr('href','/syozai/t2/');
			});
	});
	
	$(".tabNav02 a").click(function(){
		$(this).css({"backgroundImage":"url('images/top/tab_nav_01_on.gif')"});
		$(".tabNav01 a").removeAttr("style");
		$(".tabNav03 a").removeAttr("style");
		$(".tabNav04 a").removeAttr("style");
		$('#tab1,#tab3,#tab4').css({"zIndex":"1"}).fadeOut();
		$('#tab2').css({"zIndex":"100"}).fadeIn();
			$(this).click(function(){
				$(this).attr('href','/syozai/t3/');
			});
	});
	
	$(".tabNav03 a").click(function(){
		$(this).css({"backgroundImage":"url('images/top/tab_nav_02_on.gif')"});
		$(".tabNav01 a").removeAttr("style");
		$(".tabNav02 a").removeAttr("style");
		$(".tabNav04 a").removeAttr("style");
		$('#tab1,#tab2,#tab4').css({"zIndex":"1"}).fadeOut();
		$('#tab3').css({"zIndex":"100"}).fadeIn();
			$(this).click(function(){
				$(this).attr('href','/syozai/t4/');
			});
	});
	
	$(".tabNav04 a").click(function(){
		$(this).css({"backgroundImage":"url('images/top/tab_nav_03_on.gif')"});
		$(".tabNav01 a").removeAttr("style");
		$(".tabNav02 a").removeAttr("style");
		$(".tabNav03 a").removeAttr("style");
		$('#tab1,#tab2,#tab3').css({"zIndex":"1"}).fadeOut();
		$('#tab4').css({"zIndex":"100"}).fadeIn();
			$(this).click(function(){
				$(this).attr('href','/syozai/t5/');
			});
	});
	
	
	
	// 商材ランキング動作設定
	$(".ui-tabs-nav li:eq(0) a").click(function(){
		$(this).css({"backgroundPosition":"0 150px"});
		$(".ui-tabs-nav li:not(:eq(0)) a").removeAttr("style");
		$('#fragment-2,#fragment-3,#fragment-4').css({"zIndex":"1"}).fadeOut();
		$('#fragment-1').css({"zIndex":"100"}).fadeIn();
	});
	$(".ui-tabs-nav li:eq(1) a").click(function(){
		$(this).css({"backgroundPosition":"0 150px"});
		$(".ui-tabs-nav li:not(:eq(1)) a").removeAttr("style");
		$('#fragment-1,#fragment-3,#fragment-4').css({"zIndex":"1"}).fadeOut();
		$('#fragment-2').css({"zIndex":"100"}).fadeIn();
	});
	$(".ui-tabs-nav li:eq(2) a").click(function(){
		$(this).css({"backgroundPosition":"0 150px"});
		$(".ui-tabs-nav li:not(:eq(2)) a").removeAttr("style");
		$('#fragment-1,#fragment-2,#fragment-4').css({"zIndex":"1"}).fadeOut();
		$('#fragment-3').css({"zIndex":"100"}).fadeIn();
	});
	$(".ui-tabs-nav li:eq(3) a").click(function(){
		$(this).css({"backgroundPosition":"0 150px"});
		$(".ui-tabs-nav li:not(:eq(3)) a").removeAttr("style");
		$('#fragment-1,#fragment-2,#fragment-3').css({"zIndex":"1"}).fadeOut();
		$('#fragment-4').css({"zIndex":"100"}).fadeIn();
	});
	
	
	
	
	
});
