YAHOO.namespace("BBnavleftmenu");

YAHOO.util.Event.onContentReady("navleftmenu", 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 navmenu = new YAHOO.widget.Menu("navleftmenu", { 
                                            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.
    */

    navmenu.render();            

});