// 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 = 7;function loopColor() {	i++;	if (i<50) {	randomCell = Math.round(1+(6*Math.random()));	randomColor = Math.round(9*Math.random());	document.getElementById('c'+randomCell).style.backgroundColor= nuancier[randomColor];	mainDelay = setTimeout('loopColor()',i);	}	else {		if (b<8) {			randomColor = Math.round(10*Math.random());	document.getElementById('c'+randomCell).style.backgroundColor= nuancier[randomColor];			//document.getElementById('c'+b).style.backgroundColor= "#000000";			b++;			mainDelay = setTimeout('loopColor()',150);			}		else if (w>0) {			document.getElementById('c'+w).style.backgroundColor= "#FFFFFF";			w--;			mainDelay = setTimeout('loopColor()',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";}