	// 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, -1, 5, mtDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		var menu0 = ms.addMenu(document.getElementById("menu0"));
		menu0.addItem("&raquo; Who We Are", "about-us.cfm");
		menu0.addItem("&raquo; Meet the Staff", "about-staff.cfm"); 
		menu0.addItem("&raquo; Affiliations and Designations", "affiliations_designations.cfm");
		menu0.addItem("&raquo; Clients", "clients.cfm"); 
		menu0.addItem("&raquo; Awards", "awards.cfm"); 
		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("&raquo; Overview", "commercial-real-estate-services.cfm"); // send no URL if nothing should happen onclick
		menu1.addItem("&raquo; Meet the Staff", "staff.cfm?section=Commercial Real Estate Services"); // send no URL if nothing should happen onclick
		menu1.addItem("&raquo; Property Management", "property-management.cfm");
		menu1.addItem("&raquo; Asset Management", "asset-management.cfm");
		menu1.addItem("&raquo; One Bellemead Centre", "commercial-bellemead.cfm");
		menu1.addItem("&raquo; Pines Crossing Shopping Center&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "commercial-pines.cfm");
		menu1.addItem("&raquo; Milam Street Office Building", "commercial-milam.cfm");
		menu1.addItem("&raquo; Interstate Circle Center", "commercial-interstate.cfm");
		menu1.addItem("&raquo; 2800 West 70th Street", "commercial-west70th.cfm");
		menu1.addItem("&raquo; View All Properties", "view_all_commercial.cfm");
		
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&raquo; Overview", "apartments.cfm"); 
		menu2.addItem("&raquo; View all Communities", "view_all_apartments.cfm"); 
		menu2.addItem("&raquo; Meet the Staff", "staff.cfm?section=Apartments"); 

		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("&raquo; Overview", "sequoia-construction.cfm"); 
		menu3.addItem("&raquo; View Developments", "sequoia-development.cfm");
		menu3.addItem("&raquo; Meet the Staff", "staff.cfm?section=Sequoia Construction"); 
		
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("&raquo; Overview", "our-market.cfm"); 
		menu4.addItem("&raquo; Shreveport-Bossier Community Profile", "community-profile.cfm"); 
		menu4.addItem("&raquo; Real Estate Review", "our-market.cfm?pdf=yes"); 
		menu4.addItem("&raquo; Investment Criteria", "investment-criteria.cfm"); 
		menu4.addItem("&raquo; Community Links", "communities.cfm"); 
		
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("&raquo; Overview", "accounting.cfm"); 
		menu5.addItem("&raquo; Meet the Staff", "staff.cfm?section=Accounting");
		//==================================================================================================
	/*
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&raquo; Sub Menu Link", "#"); 
		menu2.addItem("&raquo; Sub Menu Link", "#"); 
		menu2.addItem("&raquo; Sub Menu Link", "#"); 
		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("&raquo; Sub Menu Link", "#"); 
		menu3.addItem("&raquo; Sub Menu Link", "#"); 
		menu3.addItem("&raquo; Sub Menu Link", "#"); 
		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("&raquo; Sub Menu Link", "#"); 
		menu4.addItem("&raquo; Sub Menu Link", "#"); 
		menu4.addItem("&raquo; Sub Menu Link", "#"); 
	*/
		//==================================================================================================
		// 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[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();
	}
