
var banqueImageSubstitution = {
	image : 'menu',
	nbImages : 3,
	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='#e0ffbd';
	document.getElementById(id).style.color='#006600';
	
}

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