var elementCourant;
function changerMenuSite(element){

if(elementCourant!=undefined)
elementCourant.style.color="red";

element.style.color="white";

elementCourant = element;
}


