	// 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, 5, mtDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================

		//
		// About Robocup2004
		//
		var topmenu1 = ms.addMenu(document.getElementById("topmenu1"));
		topmenu1.addItem("Why this forum", "#");
		topmenu1.addItem("Mission", "#");
		topmenu1.addItem("Seed Rights", "#");
		topmenu1.addItem("Farmers Rights", "#");
		
		var topmenu2 = ms.addMenu(document.getElementById("topmenu2"));
		topmenu2.addItem("Issue wise", "#");
		
		var topmenu3 = ms.addMenu(document.getElementById("topmenu3"));
		topmenu3.addItem("Issue wise", "#");
		
		var topmenu4 = ms.addMenu(document.getElementById("topmenu4"));
		topmenu4.addItem("News Digest", "#");
		topmenu4.addItem("Journal", "#");
		topmenu4.addItem("Books/ Reports", "#");
		topmenu4.addItem("Fact Sheet", "#");
		topmenu4.addItem("Briefs", "#");
		topmenu4.addItem("Trainiing Manual", "#");
		topmenu4.addItem("Booklet", "#");
		topmenu4.addItem("Poster", "#");
		topmenu4.addItem("Leaflet", "#");
		topmenu4.addItem("Sticker", "#");
		
		var topmenu5 = ms.addMenu(document.getElementById("topmenu5"));
		topmenu5.addItem("Statistics", "#");
		topmenu5.addItem("Govt. of Bangladesh Info", "#");
		topmenu5.addItem("News Clips", "#");
		topmenu5.addItem("Related Links", "#");
		topmenu5.addItem("FAQ", "#");
		//==================================================================================================

		//==================================================================================================
		// 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])
		//==================================================================================================		

		//
		// RoboCup Soccer
		//
		/*var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Labor Rights","#");
		menu2.addItem("Minimum Wage","#");
		menu2.addItem("Livelihood Security","#");

	    var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("WTO", "#");
		menu3.addItem("UNCTAD", "#");
		menu3.addItem("FTA ", "#");
		menu3.addItem("Bi-lateral", "#");
		menu3.addItem("FDI", "#");
		
		var subMenu31 = menu3.addMenu(menu3.items[0]);
		subMenu31.addItem("Services","#");
		subMenu31.addItem("Intellectuasl Property","#");
		subMenu31.addItem("Agriculture","#");
		subMenu31.addItem("Non-Agricultural Product","#");
		subMenu31.addItem("LDC Issues","#");
		subMenu31.addItem("Disputes","#");
		subMenu31.addItem("WTO Governance","#");
		subMenu31.addItem("RTA","#");
		
		var subMenu31 = menu3.addMenu(menu3.items[2]);
		subMenu31.addItem("SAFTA","#");
		subMenu31.addItem("ASEAN","#");
		subMenu31.addItem("BIMSTEC","#");
		
		var subMenu31 = menu3.addMenu(menu3.items[3]);
		subMenu31.addItem("TIFA","#");
		
		// Robocup Junior
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("World Bank","#");		
		menu4.addItem("IMF","#");		
		menu4.addItem("ADB","#");		
		menu4.addItem("IFI Governance","#");		
		menu4.addItem("Simulador de Crédito","#");
		menu4.addItem("Preguntas Frecuentes","#");
		menu4.addItem("Fraccionamientos por Promotor","#");
		menu4.addItem("Bienes Adjudicados","#");

		var subMenu41 = menu4.addMenu(menu4.items[0]);
		subMenu41.addItem("SAP","#");
		subMenu41.addItem("PRSP","#");
		subMenu41.addItem("DSC","#");

		var subMenu42 = menu4.addMenu(menu4.items[1]);
		subMenu42.addItem("PRGF","#");
		
		var subMenu42 = menu4.addMenu(menu4.items[2]);
		subMenu42.addItem("KJDRP","#");
		subMenu42.addItem("SBCP","#");
		subMenu42.addItem("NWCDP","#");
		
		
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Mining","#");		
		menu5.addItem("Telecom","#");		
		menu5.addItem("Agriculture","#");		
		menu5.addItem("Garments/ Textile","#");		
		menu5.addItem("Leather","#");
		menu5.addItem("Fisheries/ Shrimp","#");
		menu5.addItem("Seed","#");
		menu5.addItem("CSR","#");
		menu5.addItem("Corporate Governance","#");
		
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("River","#");		
		menu6.addItem("Forest","#");		
		menu6.addItem("Farm Land","#");		
		
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("Land","#");		
		menu7.addItem("Women Rights to Land","#");		
		menu7.addItem("Ecological Agriculture","#");	
		/*var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Información Financiera", "#");
		menu5.addItem("Indicadores", "#");
		menu5.addItem("Eventos Relevantes", "#");
		
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("Pago en Línea", "#");*/		

		//==================================================================================================
		// 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();
	}
