<!--
function MenuChangeImage(ID,action){

	if (MenuActif == "L1"){
		document.getElementById("L1").src = "images/menu-gauche/location-materiel-actif.jpg";
	}

	if(MenuActif != 0){
		Lettre1 = MenuActif.substring(0,1);
		Lettre2 = MenuActif.substring(0,2);
		Lettre3 = MenuActif.substring(0,3);
		
		var ID1 = ID.substring(0, 1);
		var ID2 = ID.substring(0, 2);
		var ID3 = ID.substring(0, 3);
		
		if(ID1 != "Z"){
			if(ID1 == Lettre1 && action == "inactif"){
				// SI C'EST LE MENU DE NIVEAU 1 QUE L'UTIL PARCOURS, LAISSER LA SURBRILLANCE
			}else{
				
				document.getElementById(ID1+"D").src = "images/menu-gauche/coin-droite-"+action+".jpg";
				document.getElementById(ID1+"-etoile").src = "images/menu-gauche/etoile-grande-"+action+".jpg";
				if(action=="actif"){
					document.getElementById(ID1+"-fond").style.backgroundColor = "#E7EAEF";
					document.getElementById(ID1+"-lien").style.color = "#F3943A";
				}else{
					document.getElementById(ID1+"-fond").style.backgroundColor = "#C4CDDC";
					document.getElementById(ID1+"-lien").style.color = "#034488";
				}
			}
		}
		
		// POUR LES MENU DE NIVEAU 2
		if (ID2.length>1 && ID2 != "Z0"){
			if(ID2 == Lettre2 && action == "inactif"){
				// SI C'EST LE MENU DE NIVEAU 2 QUE L'UTIL PARCOURS, LAISSER LA SURBRILLANCE
			}else{
				document.getElementById(ID2).src = "images/menu-gauche/etoile-petite-"+action+".jpg";
				if(action=="actif"){
					document.getElementById(ID2+"-lien").style.color = "#FFF";			
					document.getElementById(ID2+"-rubr").style.backgroundColor = "#93A7C2";
					
				}else{
					document.getElementById(ID2+"-lien").style.color = "#034488";
					document.getElementById(ID2+"-rubr").style.backgroundColor = "";
				}
			}
		}
		
		// POUR LES MENU DE NIVEAU 3
		if (ID3.length>2 && ID3 != "Z00"){
			if(ID3 == Lettre3 && action == "inactif"){
				// SI C'EST LE MENU DE NIVEAU 3 QUE L'UTIL PARCOURS, LAISSER LA SURBRILLANCE
			}else{
				if(action == "actif"){
					document.getElementById(ID3+"-lien").style.color = "#FFF";			
				}else{
					document.getElementById(ID3+"-lien").style.color = "#034488";
				}
			}
		}
		
		// Remettre le menu actif pour la page en cours
		if(action == "inactif" && ID2!=MenuActif && MenuActif != ""){
			//MenuChangeImage(MenuActif,"actif");
		}
		
		if(action=="actif" && ID2!=MenuActif && MenuActif != ""){
			//MenuChangeImage(MenuActif,"inactif");
		}
	}
}
//-->
