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

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

        /*
                                 Instantiate a Menu:  The first argument passed to the constructor
                                 is the id for the Menu element to be created, the second is an
                                 object literal of configuration properties.
         */

        var oMenu = new YAHOO.widget.Menu("productsandservices", {
            position: "static",
            hidedelay:  750,
            lazyload: true });


        /*
              Define an array of object literals, each containing
              the data necessary to create a submenu.
         */

        oMenu.render();

    });

