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