// JavaScript Document

			sfHover = function() {
				var sfEls = document.getElementById("navMenuDeroulantCSS").getElementsByTagName("LI");
				for (var i=0; i<sfEls.length; i++) {
					sfEls[i].onmouseover=function() {
						if(this.className == "marron"){
							this.className += " sfhoverMarron";
						} else if(this.className == "orange"){
							this.className += " sfhoverOrange";
						} else if(this.className == "jaune"){
							this.className += " sfhoverJaune";
						} else if(this.className == "vert"){
							this.className += " sfhoverVert";
						} else {
							this.className+=" sfhover";
						}
					}
					sfEls[i].onmouseout=function() {
						this.className=this.className.replace(new RegExp(" sfhoverMarron\\b"), "");
						this.className=this.className.replace(new RegExp(" sfhoverOrange\\b"), "");
						this.className=this.className.replace(new RegExp(" sfhoverJaune\\b"), "");
						this.className=this.className.replace(new RegExp(" sfhoverVert\\b"), "");
						this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
					}
				}
			}
			if (window.attachEvent) window.attachEvent("onload", sfHover);