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