function changeClassBtnOuvrir(elt) {
	
	if(elt.className == 'bouton_moins bgColor_1'){ elt.className = 'bouton_plus bgColor_1';}
	else if(elt.className == 'bouton_plus bgColor_1'){ elt.className = 'bouton_moins bgColor_1';}
		
}
