YAHOO.example.onMenuReadyTopMenu1 = function() {

                // Instantiate and render the menu

                var oMenu = new YAHOO.widget.Menu(
                                    "frontPageNavTopMenu1",
                                    {
                                        position:"static",
                                        submenualignment:["tl","bl"],
                                        hidedelay:750,
                                        lazyload:true,
                                        effect:{
                                            effect:YAHOO.widget.ContainerEffect.FADE,
                                            duration:0.25
                                        }
                                    }
                                );

                oMenu.render();

            };

YAHOO.example.onMenuReadyTopMenu2 = function() {

                // Instantiate and render the menu

                var oMenu = new YAHOO.widget.Menu(
                                    "frontPageNavTopMenu2",
                                    {
                                        position:"static",
                                        submenualignment:["tl","bl"],
                                        hidedelay:750,
                                        lazyload:true,
                                        effect:{
                                            effect:YAHOO.widget.ContainerEffect.FADE,
                                            duration:0.25
                                        }
                                    }
                                );

                oMenu.render();

            };

YAHOO.example.onMenuReadyTopMenu3 = function() {

                // Instantiate and render the menu

                var oMenu = new YAHOO.widget.Menu(
                                    "frontPageNavTopMenu3",
                                    {
                                        position:"static",
                                        submenualignment:["tl","bl"],
                                        hidedelay:750,
                                        lazyload:true,
                                        effect:{
                                            effect:YAHOO.widget.ContainerEffect.FADE,
                                            duration:0.25
                                        }
                                    }
                                );

                oMenu.render();

            };

YAHOO.example.onMenuReadyTopMenu4 = function() {

                // Instantiate and render the menu

                var oMenu = new YAHOO.widget.Menu(
                                    "frontPageNavTopMenu4",
                                    {
                                        position:"static",
                                        submenualignment:["tl","bl"],
                                        hidedelay:750,
                                        lazyload:true,
                                        effect:{
                                            effect:YAHOO.widget.ContainerEffect.FADE,
                                            duration:0.25
                                        }
                                    }
                                );

                oMenu.render();

            };
            // Initialize and render the menu when it is available in the DOM

            YAHOO.util.Event.onContentReady("frontPageNavTopMenu1", YAHOO.example.onMenuReadyTopMenu1);
            YAHOO.util.Event.onContentReady("frontPageNavTopMenu2", YAHOO.example.onMenuReadyTopMenu2);
            YAHOO.util.Event.onContentReady("frontPageNavTopMenu3", YAHOO.example.onMenuReadyTopMenu3);
            YAHOO.util.Event.onContentReady("frontPageNavTopMenu4", YAHOO.example.onMenuReadyTopMenu4);
