function InitYUIMenu () {
    // Instantiate and render the menu bar
    var YahooMenu = new YAHOO.widget.MenuBar(this, { autosubmenudisplay:true, showdelay:100, hidedelay:200, lazyload:true, constraintoviewport:true });
    YahooMenu.render();
};

function InitFeaturedMenu() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("FeaturedMenu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
// Initialize and render the menu bar when it is available in the DOM
YAHOO.util.Event.onContentReady("Yui", InitYUIMenu);
YAHOO.util.Event.onContentReady("FeaturedMenu", InitFeaturedMenu);