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