﻿ /*
     Initialize and render the MenuBar when its elements are ready 
     to be scripted.
*/

YAHOO.util.Event.onContentReady("topNav", function () {

    /*
         Instantiate a MenuBar:  The first argument passed to the 
         constructor is the id of the element in the page 
         representing the MenuBar; the second is an object literal 
         of configuration properties.
    */

    var oMenuBar = new YAHOO.widget.MenuBar("topNav", { 
                                                autosubmenudisplay: true, 
                                                hidedelay: 0, 
                                                lazyload: true });

    /*
         Call the "render" method with no arguments since the 
         markup for this MenuBar instance is already exists in 
         the page.
    */

    oMenuBar.render();
    
    

});

 /*
                 Initialize and render the Menu when its elements are ready 
                 to be scripted.
            */
            
            YAHOO.util.Event.onContentReady("sideNav", function () {
            
                /*
                     Instantiate a Menu:  The first argument passed to the 
                     constructor is the id of the element in the page 
                     representing the Menu; the second is an object literal 
                     of configuration properties.
                */

                var oMenu = new YAHOO.widget.Menu("sideNav", { 
                                                        position: "static", 
                                                        hidedelay:  750, 
                                                        lazyload: true });
            
                /*
                     Call the "render" method with no arguments since the 
                     markup for this Menu instance is already exists in the page.
                */
            
                oMenu.render();            
            
            });

