function aleatoire(){
	var ind = parseInt(Math.random()*8);
	var td = document.getElementById('tdAleatoire');
	var fondtd = 'fond' + ind;
	//alert(fondtd);
	td.className = fondtd;
}
