var URLsite = document.location.hostname;
var URLsite = ("http://"+URLsite+"/system/template_files/");

//préloade img menus
if (document.images) {
	var menu0on = new Image;
	menu0on.src = (URLsite+"images/menu0-on.jpg");
	var menu05on1 = new Image;
	menu05on1.src = (URLsite+"images/menu05-on0.jpg");
	var menu05on2 = new Image;
	menu05on2.src = (URLsite+"images/menu05-on1.jpg");
	
	var menu1on = new Image;
	menu1on.src = (URLsite+"images/menu1-on.jpg");
	var menu15on1 = new Image;
	menu15on1.src = (URLsite+"images/menu15-on1.jpg");
	var menu15on2 = new Image;
	menu15on2.src = (URLsite+"images/menu15-on2.jpg");
	
	var menu2on = new Image;
	menu2on.src = (URLsite+"images/menu2-on.jpg");
	var menu25on2 = new Image;
	menu25on2.src = (URLsite+"images/menu25-on2.jpg");
	var menu25on3 = new Image;
	menu25on3.src = (URLsite+"images/menu25-on3.jpg");
	
	var menu3on = new Image;
	menu3on.src = (URLsite+"images/menu3-on.jpg");
	var menu35on3 = new Image;
	menu35on3.src = (URLsite+"images/menu35-on3.jpg");
	var menu35on4 = new Image;
	menu35on4.src = (URLsite+"images/menu35-on4.jpg");
	
	var menu4on = new Image;
	menu4on.src = (URLsite+"images/menu4-on.jpg");
	//Les off sont déjà chargés
}

function ouvrirMenu(thingId){

	var targetElement0;
	var targetElement;
	var targetElement2;
	var targetElement3;
	
	if (thingId == "blocMenu0"){
		targetElement = document.getElementById(thingId);
		targetElement.style.backgroundImage = "url("+menu0on.src+")"; 
		targetElement2 = document.getElementById("blocMenu05");
		targetElement2.style.backgroundImage = "url("+menu05on1.src+")";
	}
	if (thingId == "blocMenu1"){
		targetElement = document.getElementById(thingId);
		targetElement.style.backgroundImage = "url("+menu1on.src+")"; 
		targetElement2 = document.getElementById("blocMenu15");
		targetElement2.style.backgroundImage = "url("+menu15on1.src+")";
		targetElement0 = document.getElementById("blocMenu05");
		targetElement0.style.backgroundImage = "url("+menu05on2.src+")"; 
	}
	else if (thingId == "blocMenu2"){
		targetElement = document.getElementById(thingId);
		targetElement.style.backgroundImage = "url("+menu2on.src+")"; 
		targetElement2 = document.getElementById("blocMenu15");
		targetElement2.style.backgroundImage = "url("+menu15on2.src+")"; 
		targetElement3 = document.getElementById("blocMenu25");
		targetElement3.style.backgroundImage = "url("+menu25on2.src+")"; 
	}
	else if (thingId == "blocMenu3"){
		targetElement = document.getElementById(thingId);
		targetElement.style.backgroundImage = "url("+menu3on.src+")"; 
		targetElement2 = document.getElementById("blocMenu25");
		targetElement2.style.backgroundImage = "url("+menu25on3.src+")"; 
		targetElement3 = document.getElementById("blocMenu35");
		targetElement3.style.backgroundImage = "url("+menu35on3.src+")"; 
	}
	else if (thingId == "blocMenu4"){
		targetElement = document.getElementById(thingId);
		targetElement.style.backgroundImage = "url("+menu4on.src+")"; 
		targetElement2 = document.getElementById("blocMenu35");
		targetElement2.style.backgroundImage = "url("+menu35on4.src+")"; 
	}
	
}
function fermerMenu(thingId){

	var targetElement0;
	var targetElement;
	var targetElement2;
	var targetElement3;
	
	if (thingId == "blocMenu0"){
		targetElement = document.getElementById(thingId);
		targetElement.style.backgroundImage = "url("+URLsite+"images/menu0-off.jpg)"; 
		targetElement2 = document.getElementById("blocMenu05");
		targetElement2.style.backgroundImage = "url("+URLsite+"images/menu05-off.jpg)"; 
	}
	if (thingId == "blocMenu1"){
		targetElement = document.getElementById(thingId);
		targetElement.style.backgroundImage = "url("+URLsite+"images/menu1-off.jpg)"; 
		targetElement2 = document.getElementById("blocMenu15");
		targetElement2.style.backgroundImage = "url("+URLsite+"images/menu15-off.jpg)"; 
		targetElement0 = document.getElementById("blocMenu05");
		targetElement0.style.backgroundImage = "url("+URLsite+"images/menu05-off.jpg)"; 
	}
	else if (thingId == "blocMenu2"){
		targetElement = document.getElementById(thingId);
		targetElement.style.backgroundImage = "url("+URLsite+"images/menu2-off.jpg)"; 
		targetElement2 = document.getElementById("blocMenu15");
		targetElement2.style.backgroundImage = "url("+URLsite+"images/menu15-off.jpg)"; 
		targetElement3 = document.getElementById("blocMenu25");
		targetElement3.style.backgroundImage = "url("+URLsite+"images/menu25-off.jpg)"; 
	}
	else if (thingId == "blocMenu3"){
		targetElement = document.getElementById(thingId);
		targetElement.style.backgroundImage = "url("+URLsite+"images/menu3-off.jpg)"; 
		targetElement2 = document.getElementById("blocMenu25");
		targetElement2.style.backgroundImage = "url("+URLsite+"images/menu25-off.jpg)"; 
		targetElement3 = document.getElementById("blocMenu35");
		targetElement3.style.backgroundImage = "url("+URLsite+"images/menu35-off.jpg)"; 
	}
	else if (thingId == "blocMenu4"){
		targetElement = document.getElementById(thingId);
		targetElement.style.backgroundImage = "url("+URLsite+"images/menu4-off.jpg)"; 
		targetElement2 = document.getElementById("blocMenu35");
		targetElement2.style.backgroundImage = "url("+URLsite+"images/menu35-off.jpg)";
	}
	
}
