// Gestion du menu déroulant pour IE
smHover = function() {
	var sub = document.getElementById("menuDeroulant").getElementsByTagName("LI");
	for (var i=0; i<sub.length; i++) {
	    sub_sub = sub[i].getElementsByTagName("LI");
	    if(sub_sub.length>0){
    		sub[i].onmouseover=function() {
    		    ul = this.getElementsByTagName("UL");
    			ul[0].style.display="block";
    			ul[0].style.background="#E7E7E7";
    		}
    		sub[i].onmouseout=function() {
    		    ul = this.getElementsByTagName("UL");
    			ul[0].style.display="none";
    			ul[0].style.background="";
    		}
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", smHover);