var obj = null;

  $(document).ready(function() {

		//survol images
		 MM_preloadImages('inc/img/menu/bouton-methode-corp-rollover.png','inc/img/menu/bouton-methode-visage-rollover.png');
		//Menu
		
		$("#bandeau-menu li").find("ul").hide();
	 	$("#bandeau-menu li").hover(function() { //Hover over event on list item
		$(this).find("ul").show(); //Show the subnav
	 	} , function() { //on hover out...
		  $(this).find("ul").hide();//Hide the subnav
	  	});
	 	//mentions legales
	  	$('a#ml').click(function() {
    	$('#mentionsLegales').show();
    	return false;
  		});
	  
	  	$('a#mlf').click(function() {
    	$('#mentionsLegales').hide();
    	return false;
  		});
		
		
		//fin ready
 		});

