// 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, 1, TransMenu.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("home"));
			menu1.addItem("Houwelings.com", "http://www.houwelings.com"); 

		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("about"));
			menu2.addItem("What We Do","../files/what-we-do.php");
			menu2.addItem("History &amp; Heritage","../files/history.php");
			menu2.addItem("Craftsman Care","../files/craftsman-care.php");
			menu2.addItem("Innovation","../files/innovation.php");
			menu2.addItem("Partners","../files/partners.php");
			//menu2.addItem("Press Reviews","../files/press-reviews.php");
			//menu2.addItem("Houweling's Resources","../files/resources.php");






		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("indoor"));
			menu3.addItem("Why Greenhouses?","../files/why-greenhouses.php");
			menu3.addItem("Vine Ripened and Hand Picked","../files/vine-ripened.php");
			menu3.addItem("Sustainability","../files/sustainable-agriculture.php");
			menu3.addItem("Food Safety","../files/food-safety.php");
			//menu3.addItem("Issues and Information","../files/issues-information.php");


			


		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("produce"));
			menu4.addItem("Tomatoes","");
			menu4.addItem("Cucumbers","");
			//menu4.addItem("Other","../files/other-produce.php");
			//menu4.addItem("Product Locator","../files/product-locator.php");


		var submenu1 = menu4.addMenu(menu4.items[0]);

			submenu1.addItem("Tomatoes On-the-Vine", "../files/tomatoes-on-the-vine.php");
			submenu1.addItem("Beefsteak Tomatoes", "../files/beefsteak-tomatoes.php");
			submenu1.addItem("Roma On-the-Vine", "../files/roma-on-the-vine.php");
			submenu1.addItem("Amorosa", "../files/amorosa.php");
			submenu1.addItem("Grape Tomatoes", "../files/grape-tomatoes.php");
			submenu1.addItem("Strawberry Tomatoes", "../files/strawberry-tomatoes.php");

		var submenu1 = menu4.addMenu(menu4.items[1]);

			submenu1.addItem("Long English Cucumbers", "../files/long-english-cucumbers.php");
			submenu1.addItem("Mini Cucumbers", "../files/mini-cucumbers.php");


		//==================================================================================================

		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("propagation"));
			menu5.addItem("Propagation","../files/propagation.php");
			menu5.addItem("Our Growing Advantage","../files/our-growing-advantage.php");
			menu5.addItem("Propagation Services","../files/propagation-services.php");
			//menu5.addItem("Greenhouse Crop Seedlings","../files/greenhouse-crop-seedlings.php");
			menu5.addItem("Facilities","../files/facilities.php");
			menu5.addItem("Shipping","../files/shipping.php");
			menu5.addItem("Bio-Security","../files/bio-security.php");
			menu5.addItem("Industry Resources","../files/industry-resources.php");
			menu5.addItem("Ordering & Contact","../files/ordering-contact.php");




			
			
		//==================================================================================================

		//==================================================================================================
		//var menu6 = ms.addMenu(document.getElementById("news"));
			//menu6.addItem("Current News","../files/news.php");
			//menu6.addItem("News Archives","../files/news-archive.php");



			
		//==================================================================================================

		//==================================================================================================
		var menu7 = ms.addMenu(document.getElementById("contact"));
			//menu7.addItem("Contact","../files/contact.php");
			menu7.addItem("Marketing","../files/marketing.php");
			//menu7.addItem("Our Greenhouses","../files/contact-greenhouses.php");
			menu7.addItem("Propagation","../files/ordering-contact.php");
			//menu7.addItem("Propagation","../files/contact-propagation.php");
			menu7.addItem("Careers & Employment","../files/careers.php");
			//menu7.addItem("Media Relations","../files/media.php");
			menu7.addItem("Locations","../files/locations.php");




		//==================================================================================================
			
		//==================================================================================================

		//==================================================================================================
		// 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();
	}
