	// 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()) {


		//var ms = new mtDropDownSet(mtDropDown.direction.down, 45, 0, mtDropDown.reference.bottomLeft);
		var ms1 = new mtDropDownSet(mtDropDown.direction.down, 120, -17, mtDropDown.reference.bottomLeft,"left","top");

		var menu11 = ms1.addMenu(document.getElementById("menu11"));
		menu11.addItem("&raquo; Pipeline Division", "pipeline.cfm");
		menu11.addItem("&raquo; Roustabout Service", "roustabout.cfm");
		menu11.addItem("&raquo; Well Testing and Flowback", "welltesting.cfm");
		menu11.addItem("&raquo; Lease Maintenance", "leasemaintanance.cfm");
		menu11.addItem("&raquo; Equipment Rental", "equipmentrental.cfm");
		menu11.addItem("&raquo; Vacuum Services", "vacuumservice.cfm");
		menu11.addItem("&raquo; Water Transfer Services", "watertransfer.cfm");
		//menu11.addItem("&raquo; Other Services", "otherservices.cfm");
		
		//==================================================================================================
		
		//==================================================================================================
		// 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 = menu11.addMenu(menu11.items[0]);
		//subMenu1.addItem("&#8226; List Active Logs", "#");
		//subMenu1.addItem("&#8226; Search for Logs", "#");

		// menu : Get Started
		//var menu2 = ms.addMenu(document.getElementById("menu2"));
		//menu2.addItem("- Mission & Values", "#"); // send no URL if nothing should happen onclick
		//menu2.addItem("- History", "#"); // send no URL if nothing should happen onclick
		//menu2.addItem("- FAQs", "#"); // send no URL if nothing should happen onclick

		//==================================================================================================
		// 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();
	}

