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