		/* Le javascript qui suit provient de: "son of suckerfish" - http://www.htmldog.com/articles/suckerfish/ */
		sfHover = function() {
			var Associe = document.getElementById("navigation").getElementsByTagName("li");
			for (var i=0; i<Associe.length; i++) {
				Associe[i].onmouseover=function() {
					this.className+=" sfhover";
				}
				Associe[i].onmouseout=function() {
					this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
				}
			}
		}
		if (window.attachEvent) window.attachEvent("onload", sfHover);

