$(function(){ 	
			$("div.defMainPro dd>div:first").show().siblings().hide();
		$("div.defMainPro dt>a").mouseover(function(){
			index = $("div.defMainPro dt>a").index(this);
 			$(this).addClass("defMainProCurrent").siblings().removeClass("defMainProCurrent");
			$("div.defMainPro dd> div").eq(index).fadeIn().siblings().hide();
 		}).eq(0).mouseover();
		
		
	    $("div.defMainNews dd>div:first").show().siblings().hide();
		$("div.defMainNews dt>a").mouseover(function(){
			index = $("div.defMainNews dt>a").index(this);
 			$(this).addClass("defMainNewsCurrent").siblings().removeClass("defMainNewsCurrent");
			$("div.defMainNews dd> div").eq(index).fadeIn().siblings().hide();
 		}).eq(0).mouseover();
		
		$("div.defMainAbout dd>div:first").show();
		$("div.defMainAbout dt>a").mouseover(function(){
			 index = $("div.defMainAbout dt>a").index(this);
			if(index<2){
				$(this).addClass("mainAboutCurrent01").siblings().removeClass("mainAboutCurrent02 mainAboutCurrent01");
			}else{
				$(this).addClass("mainAboutCurrent02").siblings().removeClass("mainAboutCurrent01 mainAboutCurrent02");
			};
			$("div.defMainAbout dd>div").eq(index).fadeIn().siblings().hide();
		}).eq(0).mouseover();
		}) 
