$(function(){
	 $("div.conts_right dd").hide();
 
	 $("div.conts_right dt.nochild").hover(function(){
		 $("div.conts_right dd:visible").slideUp("slow");
	 },function(){});

	 $("div.conts_right dt.haschild").hover(function(){
		$(this).next().slideToggle("300");
	 },function(){});

});

