//Utilisé pour IE car il ne gère pas les :hover sur autre chose que des <a>

startNav = function() {
	if (isIE5 || isIE55 || isIE6) {
		navRoot = document.getElementById("BlocNavigation");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName.toLowerCase()=="li") {
				node.onmouseover=function() {
					this.className+=" lihoverIE";
				}
				node.onmouseout=function() {
				  	this.className=this.className.replace(" lihoverIE", "");
				}
			}
		}
	 }
}
window.onload=startNav;

