var tabImgSrc=[], tabCurrentSrc=[], onImgSrc, tabCategory;

$(function(){


	$("#contents").each(function(){

		//事業コードの処理
		if("JIGYO_CD" in window){ //定義済み
			if(JIGYO_CD == ""){
				tabCategory = "sumai";
			}else{
				if((JIGYO_CD == "default")||(JIGYO_CD == "mansion")||(JIGYO_CD == "droom")){ tabCategory = "sumai"; }else{ tabCategory = JIGYO_CD; }
			}
		}else{ //未定義
			tabCategory = "sumai";
		}
		
	
		$("#contents .details > dl").hide();
		$("#contents .details > dl." + tabCategory).addClass("current").show();
		
		
		$("#contents .tab li").each(function(i){
			
			if($(this).attr("class")==tabCategory){ $(this).find("p").addClass("on"); }
	
			$(this).find("a").hover(function(){
								 
				if(!$(this).parent("span").parent("p").hasClass("on")){
	
					$("#contents .tab li > p.on").removeAttr("class");
					$(this).parent("span").parent("p").addClass("on");
					
					$("#contents .details > dl.current").removeClass("current").fadeOut(100, function(){ $("#contents .details > dl").eq(i).addClass("current").fadeIn(200); });
					
				}
			
			}, function(){
				//処理なし
			});
		
		});
		
		
		$("#contents .details dd li > a").hover(function(){ $(this).find("img").animate({ opacity: 0.6 }, 300); }, function(){ $(this).find("img").animate({ opacity: 1.0 }, 300); });
	
	
	});

});



