

function loadMenuItems() { 
 
        var oMenuBar = new YAHOO.widget.MenuBar("community-navigation",{ autosubmenudisplay: true, lazyload: true, hidedelay: 10, showdelay:0}); 

        var scoresURL = "http://scores.covers.com";
    
        var oMenuData = [
        {        
            id: "scoreboard",
            zindex: 100,
            itemdata: [ 
            
                { text: "NFL", url: scoresURL + "/football-scores-matchups.aspx" },
                { text: "NBA", url: scoresURL + "/basketball-scores-matchups.aspx" },
                
                { text: "NHL", url: scoresURL + "/hockey-scores-matchups.aspx" },
                { text: "NCAAF", url: scoresURL + "/college-football-scores-matchups.aspx" },
                { text: "NCAAB", url: scoresURL + "/college-basketball-scores-matchups.aspx" },
                
                
                
                
                { text: "My Scores", url: scoresURL + "/custom-scores.aspx"}        
            ]

        } ];
        // Initialize the submenus of the items in the root menubar   
        oMenuBar.subscribe("beforeRender", function () 
        {
           if (this.getRoot() == this) 
           {
                this.getItem(1).cfg.setProperty("submenu", oMenuData[0]);
                this.getItem(10).cfg.setProperty("submenu", oForumData[0]);
            }

        });
             
     oMenuBar.render(); 
     oMenuBar.show();
   };