function changerBouton(objCourant, classGauche, classCentre, classDroite)
{
	document.getElementById(objCourant.id+"Gauche").className = classGauche;
	document.getElementById(objCourant.id).className = classCentre;
	document.getElementById(objCourant.id+"Droite").className = classDroite;
}

function btnMouseOver(objCourant)
{
	changerBouton(objCourant, "boutonNoirGauche", "boutonNoirCentre", "boutonNoirDroite"); 
}

function btnMouseOut(objCourant)
{
	 changerBouton(objCourant, "boutonVertGauche", "boutonVertCentre", "boutonVertDroite"); 
}
