$(document).ready(function () {
		 	
		$(".menu_principal_item").hover( 
	 	   function () {
              $(this).children("ul").css("height","auto");
			  $(this).children("ul").css("width","auto");
			 
            }, 
            function () { 
		      $(this).children("ul").css("height","0px");
			  $(this).children("ul").css("width","0px");
			 
			  
            }
 	    );	
		$(".inputrecherche").click(function () {if ($(this).val()=="Tapez ici votre recherche"){$(this).val("");}});
		
		
		

		
});
