	// set up drop downs anywhere in the body of the page. I think the bottom of the page is better.. 
	// but you can experiment with effect on loadtime.
	if (mtDropDown.isSupported()) {

		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		// the first param should always be down, as it is here
		//
		// The second and third param are the top and left offset positions of the menus from their actuators
		// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
		// something like -5, 5
		//
		// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
		// of the actuator from which to measure the offset positions above. Here we are saying we want the 
		// menu to appear directly below the bottom left corner of the actuator
		//==================================================================================================
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem(" Visit The Home Page", "http://www.123internetdesigns.com/default.asp");
		
		// menu
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem(" Company Overview", "http://www.123internetdesigns.com/default.asp?p=company");
		menu2.addItem(" Latest News", "http://www.123internetdesigns.com/default.asp?p=latestnews");
		menu2.addItem(" Press Releases", "http://www.123internetdesigns.com/default.asp?p=press");
		menu2.addItem(" Online BLOG", "http://www.123internetdesigns.com/blog/");
		menu2.addItem(" Careers & Recruitment", "http://www.123internetdesigns.com/default.asp?p=careers");
		menu2.addItem(" Link Exchange & Partners", "http://www.123internetdesigns.com/links.asp");
		menu2.addItem(" Site Map", "http://www.123internetdesigns.com/sitemap.asp");

		// menu
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem(" Web Design & Development", "http://www.123internetdesigns.com/default.asp?p=webdesign");
		menu3.addItem(" Web Hosting", "http://www.123internetdesigns.com/default.asp?p=hosting");
		menu3.addItem(" Domain Name Registration", "http://www.123internetdesigns.com/default.asp?p=hosting");
		menu3.addItem(" Brand Imaging & Corporate Identity", "http://www.123internetdesigns.com/default.asp?p=brand");
		menu3.addItem(" Search Engine Optimisation", "http://www.123internetdesigns.com/default.asp?p=seo");
		menu3.addItem(" Internet Access", "http://www.123internetdesigns.com/default.asp?p=access");
		menu3.addItem(" Public Relations & Marketing", "http://www.123internetdesigns.com/default.asp?p=prmarketing");
		menu3.addItem(" Text / SMS Marketing Services", "http://www.123internetdesigns.com/default.asp?p=smsservices");
		menu3.addItem(" Computer Services", "http://www.123internetdesigns.com/default.asp?p=computerservices");
		menu3.addItem(" Multimedia Services", "http://www.123internetdesigns.com/default.asp?p=multimedia");
		menu3.addItem(" CD / DVD Duplication", "http://www.123internetdesigns.com/default.asp?p=cddvdduplication");
		menu3.addItem(" VOIP / IP Telephony", "http://www.123internetdesigns.com/default.asp?p=voiptelephony");
		menu3.addItem(" Payment Processing", "http://www.123internetdesigns.com/default.asp?p=paymentprocessing");
		menu3.addItem(" Full Colour Printing", "http://www.123internetdesigns.com/default.asp?p=print");
		menu3.addItem(" Secure Online Backup", "http://www.123internetdesigns.com/default.asp?p=onlinestorage");

		// menu
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem(" E-Commerce & Shopping Carts", "http://www.123internetdesigns.com/default.asp?p=products");
		menu4.addItem(" Newsletter & Email Campaigns", "http://www.123internetdesigns.com/default.asp?p=products");
		menu4.addItem(" Web Site Tracking & Reporting", "http://www.123internetdesigns.com/default.asp?p=products");
		menu4.addItem(" Contact & Calendar Management", "http://www.123internetdesigns.com/default.asp?p=products");
		menu4.addItem(" Embedded Mapping", "http://www.123internetdesigns.com/default.asp?p=products");
		menu4.addItem(" UK Address Searching & Positioning", "http://www.123internetdesigns.com/default.asp?p=products");
		menu4.addItem(" Content Management Systems", "http://www.123internetdesigns.com/default.asp?p=products");
		menu4.addItem(" Bespoke Solutions", "http://www.123internetdesigns.com/default.asp?p=products");

		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem(" European Office", "http://www.123internetdesigns.com/default.asp?p=contactus");
		menu5.addItem(" Online Enquiries", "http://www.123internetdesigns.com/default.asp?p=moreinfo");
		menu5.addItem(" Request A Call Back", "http://www.123internetdesigns.com/default.asp?p=callback");
		menu5.addItem(" Online Chat", "http://www.123internetdesigns.com/default.asp?p=chat");

		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem(" Your Account", "http://www.123internetdesigns.com/default.asp?p=youraccount");
		menu6.addItem(" Support", "http://www.123internetdesigns.com/default.asp?p=support");
		menu6.addItem(" Current Status", "http://www.123internetdesigns.com/default.asp?p=status");
		menu6.addItem(" Microsoft Updates", "http://www.123internetdesigns.com/default.asp?p=msupdates");
		menu6.addItem(" Downloads", "http://www.123internetdesigns.com/default.asp?p=downloads");
		menu6.addItem(" Fequently Asked Questions", "http://www.123internetdesigns.com/faq/");

		//==================================================================================================
		// 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();
	}
