	if (menuDropDown.isSupported()) {

		var path_root = "http://globaloptions.co.uk/uk";
		var ms = new menuDropDownSet(menuDropDown.direction.down, 0, -2, menuDropDown.reference.bottomLeft);
		// menu1 : About Global
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("&nbsp;&nbsp;&nbsp;Overview", path_root + "about/index.html"); 
		menu1.addItem("&nbsp;&nbsp;&nbsp;Why Choose Global Options?", path_root + "about/why_choose_global.html"); 
		menu1.addItem("&nbsp;&nbsp;&nbsp;Letter From the MD", path_root + "about/letter_from_director.html");
		menu1.addItem("&nbsp;&nbsp;&nbsp;Management Team", path_root + "about/management_team.html");
		menu1.addItem("&nbsp;&nbsp;&nbsp;Quality & Accreditations", path_root + "about/quality_and_accreditations.html");
		menu1.addItem("&nbsp;&nbsp;&nbsp;Our Systems", path_root + "about/systems.html");
		menu1.addItem("&nbsp;&nbsp;&nbsp;Frequently Asked Questions", path_root + "about/faq.html");
		menu1.addItem("&nbsp;&nbsp;&nbsp;Latest news", path_root + "about/news/index.html");

		// menu2 : Our Services
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&nbsp;&nbsp;&nbsp;Overview", path_root + "services/index.html");
		menu2.addItem("&nbsp;&nbsp;&nbsp;International Express Courier", path_root + "services/courier.html");
		menu2.addItem("&nbsp;&nbsp;&nbsp;Worldwide Airfreight", path_root + "services/airfreight.html");
		menu2.addItem("&nbsp;&nbsp;&nbsp;European Road Freight", path_root + "services/roadfreight.html");
		menu2.addItem("&nbsp;&nbsp;&nbsp;Imports", path_root + "services/imports.html");
		menu2.addItem("&nbsp;&nbsp;&nbsp;Stock Inventory Control & Mgmt", path_root + "services/stock_inventory_control.html");
		menu2.addItem("&nbsp;&nbsp;&nbsp;Project Management", path_root + "services/project_management.html");
		menu2.addItem("&nbsp;&nbsp;&nbsp;Get an online quotation", path_root + "services/rr_form.asp");

		// menu3 : Case Studies
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("&nbsp;&nbsp;&nbsp;Overview&nbsp;&nbsp;&nbsp;&nbsp;", path_root + "case_studies/index.html");

		// menu4 : Contact Us
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("&nbsp;&nbsp;&nbsp;Overview", path_root + "contacts/index.html");

		// menu5 : Client Login
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("&nbsp;&nbsp;&nbsp;Overview&nbsp;&nbsp;&nbsp;&nbsp;", path_root + "client_login/index.asp");
		
		// menu7 : Useful Tools
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("&nbsp;&nbsp;&nbsp;Dims Calculator;", path_root + "tools/calc.html");
		menu7.addItem("&nbsp;&nbsp;&nbsp;Transit Times", path_root + "tools/ttimes.html");		

		menuDropDown.renderAll();
	}

