	// 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 (DropDown.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 DropDownSet(DropDown.direction.down, 0, 0, DropDown.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"));
		menu1.addItem("Computer Business Quarterly", "/products/cbq.cfm");
		menu1.addItem("Global Business Sustainability Service", "/products/gbss.cfm");
		menu1.addItem("Network Business Quarterly", "/products/nbq.cfm");
		menu1.addItem("Professional Services Business Quarterly", "/products/psbq.cfm");
		menu1.addItem("Software Business Quarterly", "/products/sbq.cfm");
		menu1.addItem("Custom & Emerging Research", "/products/cer.cfm");
		menu1.addItem("Customer Satisfaction Studies", "/products/css.cfm");
		menu1.addItem("Service & Support Satisfaction Studies", "/products/sss.cfm");
		menu1.addItem("Analyst Inquiry Time", "/products/ait.cfm");
		
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("TBR Analyst Commentary", "/news/commentary.cfm");
		menu2.addItem("TBR in the News", "/news/inthenews.cfm");
		menu2.addItem("TBR Press Releases", "/news/pressreleases.cfm");
		menu2.addItem("TBR Publishing Calendar", "/news/calendar.cfm");

		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Our Purpose", "/about/ourpurpose.cfm");
		menu3.addItem("Our Process", "/about/ourprocess.cfm");
		menu3.addItem("Our People", "/about/ourpeople.cfm");
		
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Careers at TBR", "/contact/careers.cfm");
		menu4.addItem("Contact Info", "/contact/");
		
		DropDown.renderAll();
	}
