	// set up drop downs anywhere in the body of the page.
	if (mtDropDown.isSupported()) {
		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		//Top Menu
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);
		//Left Menu
		var ms2 = new mtDropDownSet(mtDropDown.direction.right, 0, 0, mtDropDown.reference.topRight);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================

		//Top Menu
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Recognition of Feasibility Group", "recognition.html");
		menu1.addItem("Mission", "recognition.html#mission");
		menu1.addItem("Objectives", "recognition.html#objectives");
		menu1.addItem("Organizational Structure", "structure.html");
		menu1.addItem("Organizational Operating Systems", "structure.html#systems");
		menu1.addItem("Strategies", "strategies.html");
		menu1.addItem("Strategic Allies", "allies.html");
		menu1.addItem("Scope of Services", "scope.html");
		menu1.addItem("Product Delivery", "delivery.html");
		menu1.addItem("Why a Business Needs Feasibility Group", "delivery.html#needs");
		menu1.addItem("Counselling Capacity", "delivery.html#capacity");
		menu1.addItem("Some of Our Clients", "clients.html");
		menu1.addItem("Strategic Membership", "membership.asp");

		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Business Care","business_care.html");
		menu2.addItem("Business Persons", "business_persons.html");
		menu2.addItem("Market Support", "market_support.html");
		
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Business Development Excellency Model","excellency_model.html");
		menu3.addItem("Performance Indicators","indicators.html");
		menu3.addItem("Capacity Building", "building.html");
		menu3.addItem("Strategy, Procedures & Policies", "policies.html");
		menu3.addItem("MIS & Process System", "system.html");
		menu3.addItem("Resources Management", "resources_management.html");
		menu3.addItem("Society Satisfaction", "satisfaction.html");
		menu3.addItem("People Management", "people_management.html");
		menu3.addItem("Training: Leadership", "leadership.html");

		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Feasibility Studies","studies.html");
		menu4.addItem("Project Management", "studies.html#project");
		menu4.addItem("Contract Management", "studies.html#contract");
		menu4.addItem("Financing Facilities", "facilities.html");
		menu4.addItem("Brokers", "facilities.html#brokers");
		menu4.addItem("Investment", "facilities.html#investment");
		
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Strategy, Procedure & Policies","policies.html");
		menu5.addItem("MBO Model","model.html");
		menu5.addItem("MBO Process","process.html");
		menu5.addItem("MBO Planning","planning.html");
		menu5.addItem("MBO Implementation","implementation.html");
		
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("Trade Shows","tradefare_frm.asp");
		menu6.addItem("Business Setup", "bsetup_frm.asp");
		menu6.addItem("Visa & Residency Issues", "visa_frm.asp");
		menu6.addItem("Capital Opportunities", "have_opportunity.asp");
		menu6.addItem("Personal Counseling", "consult_frm.asp");
		menu6.addItem("Ask for more..", "ask4more.asp");

		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("Market Assessment & Surveys","assessment.asp");
		menu7.addItem("Promote your Business", "promote.asp");
		menu7.addItem("Marketing Plan", "plan.asp");
		menu7.addItem("Look For Agents", "l4agents.asp");
		menu7.addItem("Look For Franchise", "l4franchise.asp");
		menu7.addItem("Look For Financing", "l4financing.asp");
		menu7.addItem("Look For Partnership", "l4partnership.asp");
		menu7.addItem("Look For Investment", "l4investment.asp");

	//Left Menu
		var leftmenu1 = ms2.addMenu(document.getElementById("leftmenu1"));
		leftmenu1.addItem("Market","contactus.asp?subject=Market");
		leftmenu1.addItem("Property", "contactus.asp?subject=Property");
		leftmenu1.addItem("Business Development", "contactus.asp?subject=Business Development");
		leftmenu1.addItem("Management", "contactus.asp?subject=Management");

		var leftmenu2 = ms2.addMenu(document.getElementById("leftmenu2"));
		leftmenu2.addItem("I have Opportunity","have_opportunity.asp");
		leftmenu2.addItem("I look for Opportunity", "look_opportunity.asp");
				
		var leftmenu3 = ms2.addMenu(document.getElementById("leftmenu3"));
		leftmenu3.addItem("Consultants","l4consultants.asp");
		leftmenu3.addItem("Contractor", "l4contractor.asp");
		leftmenu3.addItem("Supplier", "l4supplier.asp");
		leftmenu3.addItem("Employee", "l4employee.asp");
		
		var leftmenu4 = ms2.addMenu(document.getElementById("leftmenu4"));
		leftmenu4.addItem("Maps","maps.html");
		leftmenu4.addItem("Calculator", "calculator.html");
		leftmenu4.addItem("Calendar", "calendar.html");	
		leftmenu4.addItem("Agenda", "agenda.html");
		
		var leftmenu5 = ms2.addMenu(document.getElementById("leftmenu5"));
		leftmenu5.addItem("Look for a Job","l4job.asp");
		leftmenu5.addItem("Look for Staff", "l4staff.asp");
		
		//==================================================================================================
		// 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();
	}
