
sfHover = function() {
	if (!document.getElementsByTagName) return false;
	var sfEls = document.getElementById("menu-deroulant").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"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function initMenu(activeMenu) {
// do nothing
}


/***
// jQuery feature for preventing conflict with mootools (jQuery must then be loaded _after_ mootools)

var JQ = jQuery.noConflict();  

JQ(document).ready( function () {
		
	JQ("#menu-lrv #menu-deroulant li.toplevel").hover(
		function () {
			JQ(this).children("ul").slideDown("slow");
		}, 
		function () {
			JQ(this).children("ul").hide();
		}
	);

	JQ("#nav .toplevel").hover(
      function () {
    	  JQ(this).children("ul").show();
      }, 
      function () {
    	  JQ(this).children("ul").hide();
      }
    );

});
***/
