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