
$(function(){


	/* ==
	
	　タブコンテンツ（#tabCnts）
	
	============================================================================================== */
	$("#tabCnts div.tab").each(function(){

		$(this).find("li").each(function(j){
			
			$(this).children("a").attr("href", "javascript:void('0');");
			var thisClass = $(this).attr("class");

			$(this).bind("click", function(){
				
				$("#tabCnts div.tab > ul").attr("class", thisClass);
				
				$("#tabCnts div").hide();
				$("#tabCnts div.tab").show();
				$("#tabCnts div").eq(j+1).show();
			
			});
		
		});
	
	});





});



