// JavaScript Documentvar nuancier=new Array(9) 	nuancier[0]="#D4B200"; 	nuancier[1]="#B75764"; 	nuancier[2]="#936B36";	nuancier[3]="#E6C917";	nuancier[4]="#016196";	nuancier[5]="#8D3A2B";	nuancier[6]="#AC5850";	nuancier[7]="#55940A";	nuancier[8]="#B8BBAB";	nuancier[9]="#F4BDAD";	var i = 1;var b = 1;var w = 24;function zapColor(maxi,current) {	if (current<=maxi) {	randomColor = Math.round(9*Math.random());	document.getElementById('c'+current).style.backgroundColor= nuancier[randomColor];	newcurrent = current+1;	keepmaxi = maxi;	mainDelay = setTimeout('zapColor(keepmaxi,newcurrent)',150);	}}function overColor(id) {	randomColor = Math.round(10*Math.random());	document.getElementById(id).style.backgroundColor= nuancier[randomColor];}function restoreColor(id) {	document.getElementById(id).style.backgroundColor= "#FFFFFF";}function jackPot(tempo) {	newTempo = tempo+5;	if (newTempo<200) {	randomColor = Math.round(9*Math.random());	document.getElementById('titre').style.backgroundColor= nuancier[randomColor];	mainDelay = setTimeout('jackPot(newTempo)',newTempo);	}}