/*
	Script permettant de changer l'intercalaire actif d'un site Web
*/
function SwitchIntercalaire(oEvent) {
	var oSrc;
	
    if (navigator.appName == 'Microsoft Internet Explorer')
        oSrc = oEvent.srcElement;
    else
        oSrc = oEvent.target;

	if (oSrc.className == "OFF") {
		if (oSrc.id == "oBtn1") {
			document.getElementById("oBtn1").className = "ON";
			document.getElementById("oBtn2").className = "OFF";
			document.getElementById("oDescription").className = "CADRE-ON";
			document.getElementById("oHeuresAcces").className = "CACHE";
		}
		else {
			document.getElementById("oBtn1").className = "OFF";
			document.getElementById("oBtn2").className = "ON";
			document.getElementById("oDescription").className = "CACHE";
			document.getElementById("oHeuresAcces").className = "CADRE-ON";
		}
	}
	
	focus();
	
	return false;
}
