	if (mtDropDown.isSupported()) {
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);
		var menu1 = ms.addMenu(document.getElementById("menu"));
		menu1.addItem("JD Edwards Services", "jd_edwards_services.php");
		menu1.addItem("Front Office Automation", "services.php");
		menu1.addItem("Workflow Automation", "services.php");
		menu1.addItem("Custom Software Development", "services.php");
		menu1.addItem("Customizing Existing Applications", "services.php");
		menu1.addItem("Handheld Application Development", "services.php");
		menu1.addItem("Interactive Web Design", "services.php");
		menu1.addItem("Network Design & Implementation", "services.php");
		menu1.addItem("Secured Internet Access", "services.php");
		menu1.addItem("Data Protection Services", "services.php");
		menu1.addItem("Business Communication Systems", "services.php");
	

		
		/*var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Asian Long horned Beetle ", "longhorned_beetle.html");
		menu2.addItem("Emerald Ash Borer ", "ash_borer.html");*/

		
		//==================================================================================================
		// 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 subMenu1 = menu1.addMenu(menu1.items[2]);
		subMenu1.addItem("Receivable Manager", "rblmanager.html");
		subMenu1.addItem("Payable Manager", "pblmanager.html");
		subMenu1.addItem("Cash Manager", "cashmanager.html");
		subMenu1.addItem("Ledger Manager", "ledger.html");
		subMenu1.addItem("Sales Order Manager", "sales.html");
		subMenu1.addItem("Purchase Order Manager", "purchase.html");
 		subMenu1.addItem("Package Manager", "package.html");
		subMenu1.addItem("Inventory Manager", "inventory.html");
		
		var subMenu1 = menu1.addMenu(menu1.items[4]);
		subMenu1.addItem("Hierarchy Manager", "hierarchymanager.html");
		subMenu1.addItem("Authoring Manager", "authoringmanager.html");
		subMenu1.addItem("Flow Manager", "flowmanager.html");
	 
		var subMenu1 = menu1.addMenu(menu1.items[5]);
		subMenu1.addItem("Product Manager", "productmanager.html");
		subMenu1.addItem("Inventory Manager", "inventorymanager.html");
		subMenu1.addItem("Cart Manager", "cartmanager.html");
		subMenu1.addItem("Bid Manager", "bidmanager.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();
	}
