/* AFFICHER/MASQUER LES SOUS-MENUS */

function afficheDiv(div,id) {
	document.getElementById(div).style.display = "block"; 
	document.getElementById(id).style.backgroundColor = "#000000";
	document.getElementById(id).style.borderRight = "solid 1px #646464";
	document.getElementById(id).style.borderBottom = "solid 10px #646464";
	}
function cacheDiv(div,id) {
	document.getElementById(div).style.display = "none"; 
	document.getElementById(id).style.backgroundColor = "transparent";
	document.getElementById(id).style.borderRight = "solid 1px #FFFFFF";
	document.getElementById(id).style.borderBottom = "solid 10px #FFFFFF";
	}


/* ACTIF INACTIF SUR LES MENUS */

function changeBackground(id) {
	document.getElementById(id).style.backgroundColor = "#000000";
	document.getElementById(id).style.borderRight = "solid 1px #646464";
	document.getElementById(id).style.borderBottom = "solid 10px #646464";
	}
function resetBackground(id) {
	document.getElementById(id).style.backgroundColor = "transparent";
	document.getElementById(id).style.borderRight = "solid 1px #FFFFFF";
	document.getElementById(id).style.borderBottom = "solid 10px #FFFFFF";
	}


/* CAHNGER LA COULEUR DE LA PUCE DANS LES SOUS-MENUS */

function changePuce(li) {
	document.getElementById(li).style.color = "#DC6C08";
	}
function resetPuce(li) {
	document.getElementById(li).style.color = "#525355";
	}
