function InitYUIMenu () {
    // Instantiate and render the menu bar
    var YahooMenu = new YAHOO.widget.MenuBar(this, { autosubmenudisplay:true, showdelay:100, hidedelay:200, lazyload:true });
    YahooMenu.render();
};
// Initialize and render the menu bar when it is available in the DOM
YAHOO.util.Event.onContentReady("Yui", InitYUIMenu);


function initFooterMenu() {
	jQuery("div#FooterMenuWpr ul li:nth-child(even)").addClass('even');
	jQuery("div#FooterMenuWpr ul li:nth-child(odd)").addClass('odd');
	jQuery("div#FooterMenuWpr ul li:first-child").addClass('first');
	jQuery("div#FooterMenuWpr ul li:last-child").addClass('last');
}

jQuery(document).ready(function(){
	initFooterMenu();					 
});
