<!--
if(westhostsDropdown.isSupported())
	{
		var ms = new westhostsDropdownSet(westhostsDropdown.direction.down, 0, 1, westhostsDropdown.reference.bottomLeft);
	
		// menu1 : Company
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("&bull; About Us", "index.cfm?p=about");
		menu1.addItem("&bull; Design Services", "xx.cfm");
		menu1.addItem("&bull; Web Technologies", "xx.cfm");
		menu1.addItem("&bull; Pricing", "xx.cfm");
		menu1.addItem("&bull; Quotes", "xx.cfm");
		menu1.addItem("&bull; Clients", "index.cfm?p=clients");		


		// menu2 : Login
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&bull; HELM Control Panel", "http://helm.westhosting.co.uk/");
		menu2.addItem("&bull; Web Mail", "http://mail.westhosting.co.uk/");
		menu2.addItem("&bull; Statistics", "http://stats.westhosting.co.uk:9999");
		
		// menu3 : Products
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("&bull; Packages", "index.cfm?p=packages");
		//menu3.addItem("&bull; Reseller Hosting", "reseller_hosting.cfm");
		//menu3.addItem("&bull; Dedicated Servers", "dedicated_servers.cfm");
		menu3.addItem("&bull; Domains", "index.cfm?p=domains");
		menu3.addItem("&bull; Hosting Extras", "index.cfm?p=extras");	
	
		westhostsDropdown.renderAll();
	}
//-->