$(document).ready(function(){

	//Gestion du menu de gauche
	$("h3.enteteNiveau2").live("click", function(){
		var thisNext = $(this).next();
		var timeout;
		$(".menuNiv3:visible").each(function(){$(this).slideUp("fast");});
		if($(thisNext).css("display") == "none"){
			timeout = setTimeout(function() {	$(thisNext).slideUp("slow");	}, 7000);
			$(this).next().slideDown("slow");
			$(thisNext).hover(function(){
				clearTimeout(timeout);
			},function(){
				timeout = setTimeout(function() {	$(thisNext).slideUp("slow");	}, 7000);
			});
		}
	}).css("cursor","pointer");
	//fin gestion du menu

});