	// 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("- Variety", "about01.html"); // send no URL if nothing should happen onclick
		menu1.addItem("- Diversity", "companyd.html");
		menu1.addItem("- Creativity", "about02.html");
		menu1.addItem("- Availability", "about04.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])
		//==================================================================================================
	

		// menu : Consulting		
	var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- multiDimensional", "services01.html");
		menu2.addItem("- Discover", "services02.html");
		menu2.addItem("- Design", "services03.html");
		menu2.addItem("- Develop", "services04.html");
		menu2.addItem("- Deliver", "services05.html");
		menu2.addItem("- Demand", "services06.html");
	

			// menu : Solutions
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("- Accounting & Financial", "solutions1.html");
		menu3.addItem("- Automation & Marketing", "solutions2.html");
		menu3.addItem("- Education & Training", "solutions3.html");
		menu3.addItem("- Electronic Commerce", "solutions4.html");
		menu3.addItem("- Vertical Applications", "solutions5.html");
		menu3.addItem("- Software, Databases & Networks", "solutions6.html");

		// menu : CD-ROMs
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("- Commercial", "cdrom01.html");
		menu4.addItem("- Consumer", "cdrom02.html");
		menu4.addItem("- Educational", "cdrom03.html");
		menu4.addItem("- Entertainment", "cdrom05.html");
		menu4.addItem("- Financial", "cdrom04.html");
		menu4.addItem("- Training", "cdrom06.html");	
		
		
		
		// menu:Bargains
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("- Automotive", "website01.html");
		menu5.addItem("- Health", "website05.html");
		menu5.addItem("- Miscellaneous", "website06.html");
		menu5.addItem("- Music", "website07.html");
		menu5.addItem("- Retail", "website08.html");
		menu5.addItem("- Software", "website02.html");	

	// menu:Flash
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("- Flash Samples", "holder.html");

		menu6.addItem("- FlashCom MX", "holder.html");
		//menu6.addItem("- Flare Technology", "http://www.imediabuilders.com/techimb/engines.html");
		//menu6.addItem("- Flare Products", "http://www.imediabuilders.com/demo/nintro2.swf");

	var subMenu6 = menu6.addMenu(menu6.items[0]);
		subMenu6.addItem("· Site Intro", "http://www.icimedia.com/flash/Speedcam.swf");
		subMenu6.addItem("· Scalable Map", "http://www.icimedia.com/sierra/tahoe_basin.html?zoomifyImagePath=http://www.icimedia.com/sierra/LTB_FS_Lake_Tahoe_Basin");
		subMenu6.addItem("· Application Integration", "http://www.imediabuilders.com/techimb/integration.html");
		

var subMenu6 = menu6.addMenu(menu6.items[1]);
		subMenu6.addItem("· Shared Text", "flashcom/example_text_info.html");
		subMenu6.addItem("· Shared Object", "flashcom/example_sharedball_info.html");
		subMenu6.addItem("· Broadcast-Audio/Visual", "flashcom/sample_broadcast_info.html");
		subMenu6.addItem("· Chat Rooms", "flashcom/sample_lobby_info.html");
		subMenu6.addItem("· Survey", "flashcom/sample_survey_info.html");
		subMenu6.addItem("· Video Conferencing", "flashcom/sample_videoconf_info.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();
	}
