        // set up drop downs anywhere in the body of the page. I think the bottom of the page is better..
        // but you can experiment with effect on loadtime.
        if (mtDropDown.isSupported()) {

                //==================================================================================================
                // create a set of dropdowns
                //==================================================================================================
                // the first param should always be down, as it is here
                //
                // The second and third param are the top and left offset positions of the menus from their actuators
                // respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
                // something like -5, 5
                //
                // The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
                // of the actuator from which to measure the offset positions above. Here we are saying we want the
                // menu to appear directly below the bottom left corner of the actuator
                //==================================================================================================
                var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

                //==================================================================================================
                // create a dropdown menu
                //==================================================================================================
                // the first parameter should be the HTML element which will act actuator for the menu
                //==================================================================================================
                var menu1 = ms.addMenu(document.getElementById("menu1"));

                //==================================================================================================
                // add a sub-menu
                //==================================================================================================
                // to add a sub menu to an existing menu object, call it's addMenu method and pass it the item from
                // the parent menu which should act as it's actuator. To add a submenu to the fourth item of a menu
                // called "theMenu", you would do theMenu.addMenu(theMenu.items[3])
                //==================================================================================================
                //var subMenu1 = menu1.addMenu(menu1.items[4]);
                //subMenu1.addItem("EMail Us", "");
                //subMenu1.addItem("Presales FAQ", "");
                //subMenu1.addItem("Customer Comments", "");
                //subMenu1.addItem("ORDER NOW!", "");


		// Domain Names
                var menu2 = ms.addMenu(document.getElementById("menu2"));
                menu2.addItem("Domain Information", "/products-and-services/domains.html");
                menu2.addItem("Domain Search", "/products-and-services/domain-search.html");

                // Web Hosting
                var menu3 = ms.addMenu(document.getElementById("menu3"));
                menu3.addItem("Web Hosting Overview","/products-and-services/shared-hosting/index.html");
                menu3.addItem("Package Comparision","/products-and-services/shared-hosting/compare-hosting.html");
                menu3.addItem("Application Vault","/products-and-services/shared-hosting/application-vault.html");
                menu3.addItem("Shared Hosting Packages","/products-and-services/shared-hosting/index.html");
                menu3.addItem("Package Upgrades","/products-and-services/shared-hosting/package-upgrades/index.html");
                menu3.addItem("SSL Certificates","/products-and-services/sslcertificates.html");

                var subMenu1 = menu3.addMenu(menu3.items[3]);
                subMenu1.addItem("Entry Hosting", "/products-and-services/shared-hosting/entry-hosting.html");
                subMenu1.addItem("Standard Hosting", "/products-and-services/shared-hosting/standard-hosting.html");
                subMenu1.addItem("Advanced Hosting", "/products-and-services/shared-hosting/advanced-hosting.html");
                subMenu1.addItem("Extreme Hosting", "/products-and-services/shared-hosting/extreme-hosting.html");

                // menu
        //        var menu4 = ms.addMenu(document.getElementById("menu4"));
        //        menu4.addItem("Dedicated Server Overview", "/products-and-services/dedicated/index.html");
        //        menu4.addItem("Dedicated Server Information", "/products-and-services/dedicated/features.html");
        //        menu4.addItem("Managed Services", "/products-and-services/dedicated/managed-services.html");

                // menu
         //       var menu5 = ms.addMenu(document.getElementById("menu5"));
         //       menu5.addItem("Co-Location Overview", "/products-and-services/co-location/index.html");
         //       menu5.addItem("Co-Location Options", "/products-and-services/co-location/options.html");
         //       menu5.addItem("IP Transit", "/products-and-services/co-location/iptransit.html");
         //       menu5.addItem("IP Peering", "/products-and-services/co-location/ippeering.html");
         //       menu5.addItem("Network", "/products-and-services/infrastructure/network.html");
         //       menu5.addItem("Data Centre", "/products-and-services/infrastructure/datacentre.html");
         //       menu5.addItem("Centre of Excellence", "/products-and-services/managed_services/CoE.html");
         //       menu5.addItem("Network Operations", "/products-and-services/infrastructure/networkoperations.html");

                // Support
                var menu6 = ms.addMenu(document.getElementById("menu6"));
                menu6.addItem("About us", "/overview.html");
                menu6.addItem("Customer Support Portal", "http://www.provider-one.net/support");
                menu6.addItem("Customer Billing Portal", "https://www.provider-one.net/billing");
                menu6.addItem("Contact us", "/contactus/contactus.html");

                // Customer Login
                var menu7 = ms.addMenu(document.getElementById("menu7"));

                // Jobs
          //      var menu8 = ms.addMenu(document.getElementById("menu8"));

                //==================================================================================================
                // write drop downs into page
                //==================================================================================================
                // this method writes all the HTML for the menus into the page with document.write(). It must be
                // called within the body of the HTML page.
                //==================================================================================================
                mtDropDown.renderAll();
        }

// Martin Marshall - 20/04/06 - Include Ad Tracking
//document.write('<script language="javascript" src="https://www.provider-one.net/support/visitor/index.php?_m=livesupport&_a=htmlcode&nolink=1&departmentid=0"></script>');




