$(document).ready(
 	function(){
 	
 		// Masque tous les sous menus pr commencer
		$("#MainNav ul li.btnRub ul").hide();
		
		/* ------- VERSION EN HOVER ------------- */
		/*
		// Over sur un menu : masque les autres 
		$("#MainNav ul li.btnRub").hover(
			function() {
				$("#MainNav li:not(#" + $(this).attr("id")+ ") ul").hide();
				$(this).find("ul").show();
			},
			function() {
				$(this).find("ul").hide();
			}
		);
		// Sortie du menu global : reouverture du menu courant
		$("#menuRub").hover(
			function() {
			}
			,
			function() {
				slideCurrent();
			}
		);
		*/
		/* ------- VERSION EN HOVER ------------- */
		 
		// Click sur un menu : masque les autres 
		$("#MainNav ul li.btnRub a").click(
			function() {
				$("#MainNav li:not(#" + $(this).parent().attr("id") + ") ul").hide();
				$(this).parent().find("ul").show();
				return false;
			}
		);
		$("#MainNav ul.sousnav li a").unbind("click");
		
		// Ouverture du menu courant
		slideCurrent();
		
	}
);

slideCurrent = function() {

	if($("body.location").length) $("li#btn1 ul").slideDown("slow");
	if($("body.achat").length) $("li#btn2 ul").slideDown("slow");
	if($("body.travaux").length) $("li#btn3 ul").slideDown("slow");
	if($("body.mobilite").length) $("li#btn4 ul").slideDown("slow");
	if($("body.assistance").length) $("li#btn5 ul").slideDown("slow");
	
}
