
var banqueImageSubstitution = {
	image : 'menu',
	nbImages : 5,
	suffixe : '_on',
	prechargementImages : function() {
		
		var imgObj = new Image();
		for (var i=1; i <= this.nbImages; i++) {
			imgObj.src= this.image+i+this.suffixe+'.jpg';
		}
		
	}
}


function imageOn(quoi) {
		document.getElementById(quoi).src='images/'+quoi+'_on.jpg';
}

function imageOff(quoi) {
		document.getElementById(quoi).src='images/'+quoi+'_off.jpg';
}

function couleurFormOn(id) {
	
	document.getElementById(id).style.background='#FFF5EC';
	document.getElementById(id).style.color='#FF6600';
	document.getElementById(id).style.borderColor='#FF6600';
	
}

function couleurFormOff(id) {
	
	document.getElementById(id).style.background='#ffffff';
	document.getElementById(id).style.color='#222222';
    document.getElementById(id).style.borderColor='#222222';

	
}