/** 
 * @version 1.0
 * Permet d'afficher le menu css des sites avec ie 6
 */
sfHover = function() {

	var sfEls = document.getElementById("navmenu").getElementsByTagName("li");

	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover = function() {
			this.className += " sfhover";
		}//end function
		
		sfEls[i].onmouseout = function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}//end function
		
	}//end for
	
}//end function

if (window.attachEvent){
	window.attachEvent("onload", sfHover);
}//end if