	// 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, 1, 0, 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("my_general_garden"));
		menu1.addItem("My Garden", "my_general_garden/index.php");
		menu1.addItem("Soil Conditioners", "my_general_garden/soil_conditioners.php"); 
		menu1.addItem("Fertilisers", "my_general_garden/fertilisers.php");
		menu1.addItem("Water Savers", "my_general_garden/water_savers.php");
		menu1.addItem("Pest, Disease and Weed Control", "my_general_garden/pest_disease_weed.php");
		menu1.addItem("Great Add Ons for my Garden", "my_general_garden/great_add_ons.php");
		
		// send no URL if nothing should happen onclick

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

		//==================================================================================================
		
		var menu2 = ms.addMenu(document.getElementById("my_lawn"));
		menu2.addItem("My Lawn", "my_lawn/index.php");
		menu2.addItem("Soil Conditioners", "my_lawn/soil_conditioners.php"); 
		menu2.addItem("Fertilisers", "my_lawn/fertilisers.php");
		menu2.addItem("Water Savers", "my_lawn/water_savers.php");
		menu2.addItem("Pest, Disease and Weed Control", "my_lawn/pest_disease_weed.php");
		
		// send no URL if nothing should happen onclick

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

		//==================================================================================================
		
		var menu3 = ms.addMenu(document.getElementById("my_rose_garden"));
		menu3.addItem("My Rose Garden", "my_rose_garden/index.php");
		menu3.addItem("Soil Conditioners", "my_rose_garden/soil_conditioners.php"); 
		menu3.addItem("Fertilisers", "my_rose_garden/fertilisers.php");
		menu3.addItem("Water Savers", "my_rose_garden/water_savers.php");
		menu3.addItem("Pest and Disease Control", "my_rose_garden/pest_disease.php");
		
		// send no URL if nothing should happen onclick

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

		//==================================================================================================
		
		var menu4 = ms.addMenu(document.getElementById("my_vegetable_garden"));
		menu4.addItem("My Vegetable Garden", "my_vegetable_garden/index.php");
		menu4.addItem("Soil Conditioners", "my_vegetable_garden/soil_conditioners.php"); 
		menu4.addItem("Fertilisers", "my_vegetable_garden/fertilisers.php");
		menu4.addItem("Water Savers", "my_vegetable_garden/water_savers.php");
		menu4.addItem("Pest and Disease Control", "my_vegetable_garden/pest_disease.php");
		
		// send no URL if nothing should happen onclick

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

		//==================================================================================================
		
		var menu5 = ms.addMenu(document.getElementById("my_native_garden"));
		menu5.addItem("My Native Garden", "my_native_garden/index.php");
		menu5.addItem("Soil Conditioners", "my_native_garden/soil_conditioners.php"); 
		menu5.addItem("Fertilisers", "my_native_garden/fertilisers.php");
		menu5.addItem("Water Savers", "my_native_garden/water_savers.php");
		menu5.addItem("Pest and Disease Control", "my_native_garden/pest_disease.php");
		
		// send no URL if nothing should happen onclick

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

		//==================================================================================================
		
				
		var menu6 = ms.addMenu(document.getElementById("my_potted_garden"));
		menu6.addItem("My Potted Garden", "my_potted_garden/index.php");
		menu6.addItem("Potting Mix for your plants", "my_potted_garden/potting_mix.php"); 
		menu6.addItem("Fertilisers", "my_potted_garden/fertilisers.php");
		menu6.addItem("Water Savers", "my_potted_garden/water_savers.php");
		menu6.addItem("Pest and Disease Control", "my_potted_garden/pest_disease.php");
		
		// send no URL if nothing should happen onclick

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

		//==================================================================================================
		
		var menu7 = ms.addMenu(document.getElementById("my_fruits_and_citrus"));
		menu7.addItem("My Fruits and Citrus", "my_fruits_and_citrus/index.php"); 
		menu7.addItem("Soil Conditioners", "my_fruits_and_citrus/soil_conditioners.php"); 
		menu7.addItem("Fertilisers", "my_fruits_and_citrus/fertilisers.php");
		menu7.addItem("Water Savers", "my_fruits_and_citrus/water_savers.php");
		menu7.addItem("Pest and Disease Control", "my_fruits_and_citrus/pest_disease.php");
		
		// send no URL if nothing should happen onclick

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

		//==================================================================================================
		
		var menu8 = ms.addMenu(document.getElementById("my_seeds_and_cuttings"));
		menu8.addItem("My Seeds and Cuttings", "my_seeds_and_cuttings/index.php"); 
		menu8.addItem("Growing Mixes and Propagators", "my_seeds_and_cuttings/growing_mixes_propagators.php"); 
		menu8.addItem("Pest and Disease Control", "my_seeds_and_cuttings/pest_disease.php");
		
		// send no URL if nothing should happen onclick

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

		//==================================================================================================
		
		var menu9 = ms.addMenu(document.getElementById("my_organic_garden"));
		menu9.addItem("My Organic Garden", "my_organic_garden/index.php");
		menu9.addItem("Soil Conditioners", "my_organic_garden/soil_conditioners.php"); 
		menu9.addItem("Fertilisers", "my_organic_garden/fertilisers.php");
		menu9.addItem("Water Savers", "my_organic_garden/water_savers.php");
		menu9.addItem("Pest and Disease Control", "my_organic_garden/pest_disease_weed.php");
		
		// 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.
		//==================================================================================================
		TransMenu.renderAll();
	}
