	// 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 menu0 = ms.addMenu(document.getElementById("chemicals"));
		menu0.addItem("Car Wash Chemicals", "car-wash.php"); 
			var menu0sub0 = menu0.addMenu(menu0.items[0]);
			menu0sub0.addItem("WashPro Manufactured Chemicals", "washpro-manufactured.php?p=d1#a1");
				var menu0sub0sub0 = menu0sub0.addMenu(menu0sub0.items[0]);
				menu0sub0sub0.addItem("Bucket Brush Soaps", "washpro-manufactured.php?p=d1#a1");
				menu0sub0sub0.addItem("Carpet Shampoo & Spot Remover", "washpro-manufactured.php?p=d2#a2");
				menu0sub0sub0.addItem("Clear Coat Protectants", "washpro-manufactured.php?p=d3#a3");
				menu0sub0sub0.addItem("Foam Brush Soaps", "washpro-manufactured.php?p=d4#a4");
				menu0sub0sub0.addItem("High-Pressure Soaps", "washpro-manufactured.php?p=d5#a5");
				
				menu0sub0sub0.addItem("High-Pressure Waxes", "washpro-manufactured.php?p=d6#a6");
				menu0sub0sub0.addItem("Pre-Soaks - High pH (Alkaline)", "washpro-manufactured.php?p=d7#a7");
				menu0sub0sub0.addItem("Pre-Soaks - Low pH (Acidic)", "washpro-manufactured.php?p=d8#a8");
				menu0sub0sub0.addItem("Rinsing & Drying Aids", "washpro-manufactured.php?p=d9#a9");
				menu0sub0sub0.addItem("Tire Shiner", "washpro-manufactured.php?p=d10#a10");
				
				menu0sub0sub0.addItem("Tire, Wheel & Engine Cleaners", "washpro-manufactured.php?p=d11#a11");
				menu0sub0sub0.addItem("Tri-Color Conditioners", "washpro-manufactured.php?p=d12#a12");
				menu0sub0sub0.addItem("Vehicle Odor Removers", "washpro-manufactured.php?p=d13#a13");
				menu0sub0sub0.addItem("Salt", "washpro-manufactured.php?p=d14#a14");
			
			menu0sub0.addItem("National Branded Chemicals", "national-branded.php");
			
		menu0.addItem("Industrial Chemicals", "industrial-chemicals.php?p=20allpurpose#a20allpurpose");
			var menu0sub1 = menu0.addMenu(menu0.items[1]);
			menu0sub1.addItem("All Purpose Cleaners", "industrial-chemicals.php?p=20allpurpose#a20allpurpose");
			
			menu0sub1.addItem("Aluminum (Polished) Cleaners", "industrial-chemicals.php?p=1polished#a1polished");
			menu0sub1.addItem("Aluminum Cleaners", "industrial-chemicals.php?p=2aluminum#a2aluminum");
			
			menu0sub1.addItem("Degreasers", "industrial-chemicals.php?p=21degreasers#a21degreasers");
			
			menu0sub1.addItem("Descalers/Concrete Cleaning Products", "industrial-chemicals.php?p=3descalers#a3descalers");
			menu0sub1.addItem("Efflorescent Cleaner", "industrial-chemicals.php?p=4efflorescent#a4efflorescent");
			menu0sub1.addItem("Floor Cleaners", "industrial-chemicals.php?p=5floor#a5floor");
			
			menu0sub1.addItem("Glass/Window Cleaner", "industrial-chemicals.php?p=6glass#a6glass");
			menu0sub1.addItem("Graffiti Removers", "industrial-chemicals.php?p=d23#a23");
			menu0sub1.addItem("Hand Cleaners", "industrial-chemicals.php?p=7hand#a7hand");
			menu0sub1.addItem("Hot Tank Powder", "industrial-chemicals.php?p=8hottank#a8hottank");
			menu0sub1.addItem("Kerosene", "industrial-chemicals.php?p=9kerosene#a9kerosene");
			menu0sub1.addItem("Methanol", "industrial-chemicals.php?p=10methanol#a10methanol");
			
			menu0sub1.addItem("Parts & Brake Cleaners", "industrial-chemicals.php?p=12partsb#a12partsb");
			menu0sub1.addItem("Parts Washer Solvent", "industrial-chemicals.php?p=13partsw#a13partsw");
			menu0sub1.addItem("Presoaks Acidic", "industrial-chemicals.php?p=14presoaksac#a14presoaksac");
			menu0sub1.addItem("Presoaks Alkaline", "industrial-chemicals.php?p=15presoaksal#a15presoaksal");
			
			menu0sub1.addItem("Snow & Ice Melt", "industrial-chemicals.php?p=16snow#a16snow");
			menu0sub1.addItem("Stainless Steel Cleaners", "industrial-chemicals.php?p=17stainless#a17stainless");
			
			menu0sub1.addItem("Tar & Glue Removers", "industrial-chemicals.php?p=22tar#a22tar");
			
			menu0sub1.addItem("Tire Mounting Lubricant", "industrial-chemicals.php?p=18tiremounting#a18tiremounting");
			menu0sub1.addItem("Windshield Washer Solution", "industrial-chemicals.php?p=19windshield#a19windshield");
			
		menu0.addItem("Car Detailing Products", "car-detailing-products.php?p=1carpet#a1carpet"); 
			var menu0sub2 = menu0.addMenu(menu0.items[2]);
			menu0sub2.addItem("Carpet Shampoo & Spot Removers", "car-detailing-products.php?p=1carpet#a1carpet");
			menu0sub2.addItem("Glass Cleaners", "car-detailing-products.php?p=d3#a3");
			menu0sub2.addItem("Vehicle Odor Removers", "car-detailing-products.php?p=2vehicle#a2vehicle");
		
		
		var menu1 = ms.addMenu(document.getElementById("equipment"));
		menu1.addItem("Car Wash Equipment", "car-wash-equipment.php");
			var menu1sub0 = menu1.addMenu(menu1.items[0]);
			menu1sub0.addItem("Gallery - Sample Wash Pro Installs", "photo-gallery.php");
			menu1sub0.addItem("Mark VII", "mark-vii.php");
			menu1sub0.addItem("Ancillary Equipment", "ancillary-equipment.php");
				var menu1sub0sub2 = menu1sub0.addMenu(menu1sub0.items[2]);
					menu1sub0sub2.addItem("Through Mark VII & Partners", "ancillary-equipment.php?p=d4#a4");
					menu1sub0sub2.addItem("Air Shammee", "ancillary-equipment.php?p=d1#a1");
					menu1sub0sub2.addItem("Diamond Magic® Tire Shine System", "ancillary-equipment.php?p=d2#a2");
					menu1sub0sub2.addItem("Extrutech® Waterproof Panels", "ancillary-equipment.php?p=d3#a3");
			
		menu1.addItem("Pressure Washers", "pressure-washers.php");
			
		menu1.addItem("Semi-Truck, Bus & Train Wash Equipment", "semi-truck.php");
		
		var menu2 = ms.addMenu(document.getElementById("parts"));
		menu2.addItem("Car Wash Parts", "car-wash-parts.php");
		menu2.addItem("Pressure Washer Parts", "pressure-washer-parts.php");
		
		var menu3 = ms.addMenu(document.getElementById("service"));
		menu3.addItem("Car Wash Service", "preventive-maintenance.php?p=d1");
			var menu3sub0 = menu3.addMenu(menu3.items[0]);
			menu3sub0.addItem("Preventive Maintenance", "preventive-maintenance.php?p=d1");
			menu3sub0.addItem("Service Repair", "preventive-maintenance.php?p=d2");
			
		menu3.addItem("Pressure Washer Service", "preventive-maintenance2.php?p=d1");
			var menu3sub1 = menu3.addMenu(menu3.items[1]);
			menu3sub1.addItem("Preventive Maintenance", "preventive-maintenance2.php?p=d1");
			menu3sub1.addItem("Service Repair", "preventive-maintenance2.php?p=d2");
		
		var menu4 = ms.addMenu(document.getElementById("investor"));
		menu4.addItem("Site Planning Services", "site-selection.php?p=d1");
			var menu4sub0 = menu4.addMenu(menu4.items[0]);
			menu4sub0.addItem("Site Layout", "site-selection.php?p=d2#a2");
			menu4sub0.addItem("Site Selection", "site-selection.php?p=d1#a1");
		
		menu4.addItem("Financial Services", "financial-services.php?p=d1");
		menu4.addItem("Financial Pro Formas", "financial-services.php?p=d2");
		
		
		
		
		

		//==================================================================================================
		// 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();
	}