//This instance of the menubar does not have animation
//YAHOO.example.onMenuBarAvailable = function(p_oEvent) {
//   var oMenuBar = new YAHOO.widget.MenuBar("productsandservices", { autosubmenudisplay: true, hidedelay: 300,showDelay: 0, lazyload: true });
//   oMenuBar.render();
//}
// YAHOO.util.Event.addListener(window,"load",YAHOO.example.onMenuBarAvailable);

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("productsandservices", { autosubmenudisplay: true, hidedelay: 300,showDelay: 0, lazyload: true });
    // Render the MenuBar instance
    //oMenuBar.subscribe("show", opTrackMenuClicks);
    oMenuBar.render();
    opTrackMenuClicks();
});
