var ie = document.all ? true : false;
var IE7 = (navigator.userAgent.indexOf("MSIE 7")>-1) ? 1 : 0;
var IE8 = (navigator.userAgent.indexOf("MSIE 8")>-1) ? 1 : 0;

navHover = function() {
	var lis = document.getElementById("menuHaut").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" sfhover";
			
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if(ie){
	window.attachEvent("onload", navHover);
}
function favoris() {
	if ( navigator.appName != 'Microsoft Internet Explorer' ){
		window.sidebar.addPanel("Ellipse - La gestion fondamentale","http://www.ellipse-gestion.fr/","");
	}
	else {
		window.external.AddFavorite("http://www.ellipse-gestion.fr/","Ellipse - La gestion fondamentale");
	}
}

