//***************************************
//*                                     *
//*    Initialisation de chaque page    *
//*                                     *
//***************************************



// Initialisation page
function init() {
	addLoadEvent(window, centrer);// càd   window.onload = centrer;
	window.onresize = centrer;
}
function centrer() {
	centrerDiv("div-halo");
	centrerDiv("div-tout");
	afficherApresChargement("div-halo");
	afficherApresChargement("div-tout");
}
function afficherApresChargement(id) {
	if (window.document.getElementById(id) != null) {
		var elem = window.document.getElementById(id);
		elem.className = "afficher";// on affiche après centrage javascript
	}
}
init();



