	if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("- Beans","web/products.asp?bigid=23&bigname=Beans");
		menu1.addItem("- Nuts","web/Products.asp?bigname=Nuts&bigid=29"); // send no URL if nothing should happen onclick
		
		menu1.addItem("- Cereals","web/Products.asp?bigname=Cereals&bigid=24");
		menu1.addItem("- Vegetables","web/Products.asp?bigname=Vegetables&bigid=25"); // send no URL if nothing should happen onclick
	menu1.addItem("- Packing Material","web/Products.asp?bigname=Packing Material&bigid=26"); // send no URL if nothing should happen onclick

		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Company Profile","web/profile.asp");
		menu2.addItem("- Company Service","web/CompanyService.asp");
		menu2.addItem("- Company Culture","web/culture.asp"); // send no URL if nothing should happen onclick
		
			var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("- Our Market","web/OurMarket.asp");
		menu3.addItem("- Market Report","web/MarketReport.asp"); // send no URL if nothing should happen onclick
		
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("- Contact","web/contact.asp");
		menu4.addItem("- Our Team","web/OurTeam.asp"); // send no URL if nothing should happen onclick
		
		
		mtDropDown.renderAll();
	}

