
	// 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 menu1 = ms.addMenu(document.getElementById("products"));
		menu1.addItem("Equipments", "");
		menu1.addItem("Mechanical Seal", "");
		menu1.addItem("Pumps & Blowers", "");
		menu1.addItem("Anodes", "");
		menu1.addItem("Electro Plating Products", "");
		menu1.addItem("Tantalum Products", "");
		menu1.addItem("Exotic Metal components", "");
		menu1.addItem("Pipe Fittings & Valves", "");
		menu1.addItem("Other Special Products", "");


		var submenu1 = menu1.addMenu(menu1.items[0]);

		submenu1.addItem("Heat Exchanger", "heat-exchanger.htm");
		submenu1.addItem("Reactor Vessel", "reactor-vessel.htm");
		submenu1.addItem("Chemical Mixer", "mixture.htm");
		submenu1.addItem("Columns & Tower", "columns-and-tower.htm");
		submenu1.addItem("Plug Screw Conveyor", "plug-screw-conveyor.htm");
		submenu1.addItem("Bayonet Heaters", "bayonet-heater.htm");
		submenu1.addItem("Ventuary", "ventuary.htm");
		submenu1.addItem("Condenser", "condenser.htm");
		submenu1.addItem("Air Preheater", "air-preheater.htm");
		submenu1.addItem("Air Bundles", "air-bundles.htm");


		var submenu2 = menu1.addMenu(menu1.items[1]);

		submenu2.addItem("Mechanical Seals", "mechanical-seal.htm");


		var submenu3 = menu1.addMenu(menu1.items[2]);

		submenu3.addItem("Pumps & Blowers", "pumps-and-blowers.htm");
		submenu3.addItem("Impeller", "impeller.htm");


		var submenu4 = menu1.addMenu(menu1.items[3]);

		submenu4.addItem("Titanium Anode with Platinum Coating", "titanium-anode-with-platinum-coating.htm");
		submenu4.addItem("Titanium Anode with Oxide Coating", "titanium-anode-with-double-triple-oxide-coating.htm");


		var submenu5 = menu1.addMenu(menu1.items[4]);

		submenu5.addItem("Heating & Cooling Coils", "heating-and-cooling-coils.htm");
		submenu5.addItem("Anode Baskets", "anode-baskets.htm");
		submenu5.addItem("Jigs & Fixtures", "jigs-and-fixtures.htm");


		var submenu6 = menu1.addMenu(menu1.items[5]);

		submenu6.addItem("Thermotip", "thermotip.htm");
		submenu6.addItem("Tantalum Repair Kits", "tantalum-repair-kits.htm");
		submenu6.addItem("Tantalum Crucible for Diamond Polishing", "tantalum-crucible-for-diamond-polishing.htm");


		var submenu7 = menu1.addMenu(menu1.items[6]);

		submenu7.addItem("Thermowell", "thermowell.htm");
		submenu7.addItem("Furnace Parts", "furnace-parts.htm");


		var submenu8 = menu1.addMenu(menu1.items[7]);

		submenu8.addItem("Pipes & Pipe Fittings", "pipes-pipe-fittings.htm");
		submenu8.addItem("Valves", "valves.htm");


		var submenu9 = menu1.addMenu(menu1.items[8]);

		submenu9.addItem("Special Metal Machined Components", "special-metals-machined-components.htm");
		submenu9.addItem("Special Metal Lining on Tanks", "special-metal-lining-on-tanks.htm");
		submenu9.addItem("Evaporation Boats", "evaporation-boats.htm");
		submenu9.addItem("Falling Film Evaporator", "falling-film-evaporator.htm");
		submenu9.addItem("Vapor Duct", "vapor-duct.htm");
		submenu9.addItem("Seal Pot", "seal-pot.htm");
		submenu9.addItem("Nickel Collecting Channel", "nickel-collecting-channel.htm");
		submenu9.addItem("Weir Plate & Chick Plate", "weir-plate-and-chick-plate.htm");
		submenu9.addItem("Feed Leg Slide Gates", "feed-leg-slide-gate.htm");
		submenu9.addItem("Storage Tank", "storage-tank.htm");


		//==================================================================================================

		//==================================================================================================

		var menu2 = ms.addMenu(document.getElementById("ebrochure"));
		menu2.addItem("E-Brochure", "javascript:openwindow('ebrochure.htm','Ebrochure','scrollbars=yes,menubar=no,status=no,location=no,width=999,height=999,resizable=1,left=0,top=0');");
		menu2.addItem("Download Tinita Brochure", "tinita-brochure.htm");

		//==================================================================================================

		//==================================================================================================

		var menu3 = ms.addMenu(document.getElementById("contact"));
		menu3.addItem("Contact Us", "contact.htm");
		menu3.addItem("Enquiry Form", "enquiry.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();
}
