	t = null ;
	id_menu = "" ;
	function masqueSmenu(n) {
		for(i=1; i<=n; i++) {
			if("m"+i != id_menu) {
				document.getElementById("m"+i).style.display = "none" ;
			}
		}
	}
	
	function cache(t) {
		 masqueSmenu(8) ;
		 window.clearTimeout(t) ;
		t = null ;
	}
	function cacheMenuH() {
			id_menu = "" ;
		 t = setTimeout("cache()",650);
	}
	
	function montreMenuH(id) {
		//var o = document.getElementById("menu2").document.getElementsByTagName("ul")
		/*for(i=1; i<=6; i++) {
			document.getElementById("m"+i).style.display = "none" ;
		}*/
		id_menu = id ;
		masqueSmenu(8)
		
		window.clearTimeout(t)
		t = null
		document.getElementById(id).style.display = "block"
				

	}
	
/*

Event.domReady.add(function() {
	t = null
	$("#menu2 div").each(function(){
	   $(this).mouseover(function(){
		 window.clearTimeout(t)
		 t = null
		 $(this).children("ul").slideDown("fast");
			 if($.browser.msie) { var hauteur = $(this).width(); $(this).children("ul").css({marginLeft:"-"+hauteur+"px"});   }
			 $(this).prev().children("ul").fadeOut("fast");
		 $(this).siblings().children("ul").fadeOut("fast");
	   });
	});
	$("body").click(function(){
	  $("#menu2 div ul").fadeOut("fast");
	});
	
	$("#menu2 div > UL").mouseout(function(){
		  t = setTimeout("cache()",650);							  
	});	

});*/