// Menu CAH - Effet déroulant jQueryjQuery().ready(function(){	$("ul.lang_choix").hide();		$("#lang_select").mouseover(function(){		if($("ul.lang_choix").is(":hidden")){			$("ul.lang_choix").fadeIn();		}	});	$("ul.lang_choix").mouseleave(function(){		if($(this).is(":visible")){			$(this).fadeOut();			}	});});
