//Fonction activerHoverMenuTheme
//Permet l'effet de rollover sous Explorer
//Code original par : http://www.htmldog.com/articles/suckerfish/dropdowns/
//Modifié par David Noreau - 21 juin 2007
activerHoverMenuTheme = function() {
	var a_elemLiMenuTheme = document.getElementById("listContMenuTheme").getElementsByTagName("LI");
	for (var i=0; i<a_elemLiMenuTheme.length; i++) {
		a_elemLiMenuTheme[i].onmouseover=function() {
			this.className+=" effetHover";
		}
		a_elemLiMenuTheme[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" effetHover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", activerHoverMenuTheme);