// 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 (TransMenu.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 TransMenuSet(TransMenu.direction.down, 0, 0, TransMenu.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================

		var menu2 = ms.addMenu(document.getElementById("About"));
		menu2.addItem("Letter from Randy", "about.php");
		menu2.addItem("Map of Locations", "map.php");
		menu2.addItem("Personnel Roster", "personnel.php");
		menu2.addItem("Distributor Training Manual", "distributor.php");
		menu2.addItem("Contact Us", "contact.php");

		//==================================================================================================
		//==================================================================================================

		var menu3 = ms.addMenu(document.getElementById("Products"));
		menu3.addItem("Adhesives", "adhesives.php");
		menu3.addItem("Air Regulation", "airregulation.php");
		menu3.addItem("DuroZone", "durozone.php");
		menu3.addItem("Dyna-Tite", "dynatite.php");
		menu3.addItem("Dyn-O-Mate", "DOM.php");
		menu3.addItem("Dyn-O-Vent", "dynovent.php");
		menu3.addItem("Flexible Duct Connector", "connector.php");
		menu3.addItem("Insulation Fasteners", "InsFas.php");
		menu3.addItem("Machinery", "machinery.php");
		menu3.addItem("Screws", "screws.php");
		menu3.addItem("Tools", "tools.php");
		menu3.addItem("Español", "spanish.php");

		//==================================================================================================
		//==================================================================================================

		var menu4 = ms.addMenu(document.getElementById("Technical"));
		menu4.addItem("Material Safety Data Sheets", "technical.php");
		menu4.addItem("Submittal Forms", "forms.php");
		menu4.addItem("Installation Instructions", "installation-instructions.php");
		menu4.addItem("Machinery—Manuals", "machinery-manuals.php");
		menu4.addItem("DuroZone—Manuals", "durozone-manuals.php");
		menu4.addItem("Warranties", "warranties.php");

		//==================================================================================================
		//==================================================================================================

		var menu5 = ms.addMenu(document.getElementById("Where"));
		menu5.addItem("US Distributors", "where.php");
		menu5.addItem("International Distributors", "where-intl.php");
		menu5.addItem("Canada Distributors", "http://www.durodynecanada.ca/canada/durodynedistrubutors.htm");

		//==================================================================================================
		//==================================================================================================
		// 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.
		//==================================================================================================
		TransMenu.renderAll();
	}
	
