// JavaScript Document

// Yahoo YUI Menubar
YAHOO.util.Event.onDOMReady(function () {

    /*
         Instantiate a MenuBar, passing in the id of the HTML element 
         representing the MenuBar.
    */

    var oMenuBar = new YAHOO.widget.MenuBar("site-nav-menubar");
    

    // Render the MenuBar instance
    
    oMenuBar.render();
    
});
