	// 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 (mtDropDown.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 mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);



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

		// create a dropdown menu

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

		// the first parameter should be the HTML element which will act actuator for the menu

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

		

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



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

		// add a sub-menu

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

		// to add a sub menu to an existing menu object, call it's addMenu method and pass it the item from

		// the parent menu which should act as it's actuator. To add a submenu to the fourth item of a menu

		// called "theMenu", you would do theMenu.addMenu(theMenu.items[3])

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

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem(" Profile ", "profile.html");
		menu1.addItem(" Address ", "address.html");
		menu1.addItem(" map ", "map.html");

		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Injection Kits","injection.html");
		menu2.addItem("Multivalve", "multivalve.html");
		menu2.addItem("Reducer", "reducer.html");
		menu2.addItem("LPG Tank", "lpg_tank.html");
		menu2.addItem("Solenoid Valve", "filter.html");
		menu2.addItem("Chenge-over switch", "switch.html");
		menu2.addItem("Lamda Control", "lamdacontrol.html");
		menu2.addItem("Accessories", "accessories.html");

		var subMenu2 = menu2.addMenu(menu2.items[0]);

		subMenu2.addItem("DREAM XXI N System", "injection.html");    

    	subMenu2.addItem("DREAM XXI N : Pressure Regulator", "injection_pressure.html");
		
		subMenu2.addItem("DREAM XXI N : Common Rail Injector", "injection_commonrail.html" );
				
		subMenu2.addItem("DREAM XXI N ECU : Electronic Control Unit", "injection_ecu.html" );
	
		var subMenu2 = menu2.addMenu(menu2.items[7]);

		subMenu2.addItem("Accessories", "accessories.html");    

    	subMenu2.addItem("Copper Pipe", "copper.html" );
		

		var menu3 = ms.addMenu(document.getElementById("menu3"));
    	menu3.addItem("Lexus","installing_lexus_430.html");

		menu3.addItem("Toyota", "installing_altis.html");

		menu3.addItem("Honda", "installing_crv.html");

		menu3.addItem("Nissan", "installing_cefiro.html");

		menu3.addItem("BMW", "installing_bmw.html");

        menu3.addItem("Volvo", "installing_volvo.html");

		menu3.addItem("Land Rover", "installing_discovery.html" );

		menu3.addItem("Ford", "installing_escape.html" );

		menu3.addItem("Jeep", "installing_jeep.html");
		
		menu3.addItem("Chevrolet", "installing_zafira.html" );
		
		menu3.addItem("Mitsubishi", "installing_pajero.html" );
		
		menu3.addItem("Suzuki", "installing_suzuki.html" );
		
		menu3.addItem("Audi", "installing_audi.html" );

		var subMenu3 = menu3.addMenu(menu3.items[0]);
		subMenu3.addItem("Lexus LS430", "installing_lexus_430.html" );

		subMenu3.addItem("Lexus RX300", "installing_lexus.html" );
		
		var subMenu3 = menu3.addMenu(menu3.items[1]);
		subMenu3.addItem("Altis", "installing_altis.html");    
		subMenu3.addItem("Carmy", "installing_camry.html");
    	subMenu3.addItem("Land Cruiser", "installing_landcruiser.html");
		subMenu3.addItem("Land Cruiser VX100", "installing_landcruiser_vx100.html");

		var subMenu3 = menu3.addMenu(menu3.items[2]);
		subMenu3.addItem("CRV", "installing_crv.html" );
		subMenu3.addItem("Accord", "installing_accord.html" );
		subMenu3.addItem("Civic", "installing_civic.html" );
		subMenu3.addItem("City", "installing_city.html" );
		subMenu3.addItem("Legend", "installing_legend.html" );
		
		var subMenu3 = menu3.addMenu(menu3.items[3]);
		subMenu3.addItem("Cefiro", "installing_cefiro.html");    

		var subMenu3 = menu3.addMenu(menu3.items[4]);
    	subMenu3.addItem("BMW 318i", "installing_bmw.html");

		var subMenu3 = menu3.addMenu(menu3.items[5]);
		subMenu3.addItem("Volvo 960", "installing_volvo.html" );
		
		var subMenu3 = menu3.addMenu(menu3.items[6]);
		subMenu3.addItem("Discovery", "installing_discovery.html" );

		var subMenu3 = menu3.addMenu(menu3.items[7]);
		subMenu3.addItem("Escape", "installing_escape.html" );
		
		var subMenu3 = menu3.addMenu(menu3.items[8]);
		subMenu3.addItem("Cherokee", "installing_jeep.html" );
		
		var subMenu3 = menu3.addMenu(menu3.items[9]);
		subMenu3.addItem("Zafira", "installing_zafira.html" );
		subMenu3.addItem("Optra", "installing_optra.html" );
		
		var subMenu3 = menu3.addMenu(menu3.items[10]);
		subMenu3.addItem("Pajero", "installing_pajero.html" );
		
		var subMenu3 = menu3.addMenu(menu3.items[11]);
		subMenu3.addItem("Carry", "installing_suzuki.html" );
		
		var subMenu3 = menu3.addMenu(menu3.items[12]);
		subMenu3.addItem("Audi A6", "installing_audi.html" );
		
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Injection","prices.html");
		menu4.addItem("Lamda Control", "prices_lamda.html");
		menu4.addItem("Fix Mixer", "prices_mixer.html");
		
		var subMenu4 = menu4.addMenu(menu4.items[0]);
		subMenu4.addItem("OMVL", "prices.html" );
		subMenu4.addItem("Versus", "versus.html" );
		
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("News", "news.html");
		menu5.addItem("FAQ", "faq.html");
		
		

		

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

		// 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.

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

		mtDropDown.renderAll();

	}

