/*Fichier js specifique sous site implementer pour réaliser des traiements specifiques en fonction du sous site appelé*/

/* 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()*8);
		bandeauRoot.style.backgroundImage ="url(/images/framespa/equipe_0" + mis + ".jpg)";
	}
}
