sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
	
	var tmpSfhover = $("sfhover_conseil");
	if(tmpSfhover != null)
	{
		var sfConseil = document.getElementById("sfhover_conseil").getElementsByTagName("DIV");
		for (var i=0; i<sfConseil.length; i++) {
			sfConseil[i].onmouseover=function() {
				this.className+=" sfhover";
			}
			sfConseil[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

