/* Fonction qui gère l'affichage aléatoire du bandeau d'accueil - Eric Ferrante */
function bandeau_rotation() {
	var bandeauRoot = document.getElementById("bandeau");
	if (bandeauRoot) {
		var mis = 1 + Math.round(Math.random()*19);
		bandeauRoot.style.backgroundImage ="url(/images/llca/" + mis + ".jpg)";
	}
}
function load_fonction(){
	bandeau_rotation();
}
