 $(document).ready(function(){
	
	var path = "";
	var bPath = false;
	if (window.location.href.indexOf("produits") != -1 ){
		path = "../";
		bPath = true;
	}
	  
	 $("div#menus").load( path + "menu_FR.html", function() { 

	 
		$("#menus ul ul").hide();
		$("#menus ul li a").click(function(){
			
			$(this).parent().parent().children("li").find("ul.montre").slideToggle("").removeClass("montre").addClass("matched");
			$(this).parent().children("ul").not(".matched").addClass("montre").slideToggle("slow");
			$(this).parent().parent().children("li").find("ul.matched").removeClass("matched");
			if ($(this).attr("href") == "#") {
				return false;
			}else{
				if( $(this).parent().parent().children("li").attr("class") == "catalogue_famille" && bPath){
					$(this).attr("href", $(this).attr("href").split("/")[$(this).attr("href").split("/").length-1]);
				}
			}
		});


	    var sPage = window.location.href;
	    sPage = sPage.split("/")[sPage.split("/").length-1];

 		if(sNomProduit != "" && sNomProduit != "##NOMPRODUIT##"){
			var Niveau1 = $("li a:contains('"+ sNomProduit +"')").parent().parent().parent().parent();
			var Niveau3 = $("li a:contains('"+ sNomProduit +"')").parent().parent();
			if(Niveau1){
				Niveau1.slideToggle("slow");		
			}
			if(Niveau3){
				Niveau3.slideToggle("slow");		
			}
			
			var cssLink = $("li a:contains('"+ sNomProduit +"')").parent();
			$(cssLink).find("a").css("color","#FE9901");
			
		}

		if(window.location.href.toString().indexOf("catalogue_") == -1 || window.location.href.toString().indexOf("resultats_") == -1){
			if(sNomProduit != "" && sNomProduit != "##NOMPRODUIT##"){
		        
				var sFamille = $("a:contains('"+ sNomProduit +"')").parent().parent().parent().find("a").html();
		        var sEnsemble = $("a:contains('"+ sNomProduit +"')").parent().parent().parent().parent().parent().find("a").html();
		        var sType = $("a:contains('"+ sNomProduit +"')").parent().parent().parent().parent().parent().parent().find("a").html();
			}
			var sCheminFer = "&nbsp;&nbsp;&nbsp;<a href=\"../index_FR.html\" class=\"Lienchemin_fer\">Accueil</a>&nbsp;";
	        sCheminFer +=  "&nbsp;<img src=\"../images/fleche.gif\" border=0 alt=\">\" />&nbsp;<a class=\"Lienchemin_fer\">"+ sEnsemble +"</a>";
	        sCheminFer += "&nbsp;<img src=\"../images/fleche.gif\" border=0 alt=\">\" />&nbsp;<a class=\"Lienchemin_fer\">"+ sFamille +"</a>";
			
			// On rajoute la class montre pour que le menu puisse se refermer si on clique sur un autre ?l?ment...
			//if(sNomProduit != "" && sNomProduit != "##NOMPRODUIT##"){
				//$("ul").contains(sNomProduit).addClass("montre");
				//$("a.produit").contains(sNomProduit).css({  "text-decoration": "underline" ,color: "#FE9901", background: "#fff" });
			//}

			$("a.Lienchemin_fer_actuel").attr("class", "Lienchemin_fer");
	        $("#chemin_fer_suite").html(sCheminFer);
	    
		}
	 } );
   	    
});

