

			sfHover = function() {
				if(document.getElementById("navMenuDeroulantCSS")){
					var sfEls = document.getElementById("navMenuDeroulantCSS").getElementsByTagName("LI");
					for (var i=0; i<sfEls.length; i++) {
						sfEls[i].onmouseover=function() {
							if (typeof document.body.style.maxHeight != "undefined") {
								this.className+=" sfhoverie";
							} else {
								this.className+=" sfhover";
							}
						}
						sfEls[i].onmouseout=function() {
							/*if (is.ie7) {
								this.className+=" sfhoverie";
							} else {
								*/
								this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
								this.className=this.className.replace(new RegExp(" sfhoverie\\b"), "");
							// }
						}
					}
				}
			}
			// if (window.attachEvent) window.attachEvent("onload", sfHover);

function getCtMenu(chiffre){
	if(window.attachEvent){
		if(document.getElementById("navMenuDeroulantCSS")){
			var sfEls = document.getElementById("navMenuDeroulantCSS").getElementsByTagName("LI");
			for (var i=0; i<sfEls.length; i++) {
				sfEls[i].onmouseover=function() {
					if (typeof document.body.style.maxHeight != "undefined") {
						this.className+=" sfhoverie"+chiffre;
					} else {
						this.className+=" sfhover";
					}
				}
				sfEls[i].onmouseout=function() {
					/*if (is.ie7) {
						this.className+=" sfhoverie";
					} else {
						*/
						this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
						this.className=this.className.replace(new RegExp(" sfhoverie\\b"), "");
						this.className=this.className.replace(new RegExp(" sfhoverie1\\b"), "");
						this.className=this.className.replace(new RegExp(" sfhoverie2\\b"), "");
						this.className=this.className.replace(new RegExp(" sfhoverie3\\b"), "");
					// }
				}
			}
		}
	}
}