// 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 (TransMenu.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 TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.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("servicesMenu"));
		menu1.addItem("Consulting", "consulting.html"); 
		menu1.addItem("Monitoring", "monitoring.html");
		menu1.addItem("Hosted Infrastructure", "hosted.html");
		
		var menu2 = ms.addMenu(document.getElementById("solutionsMenu"));
		menu2.addItem("Industry", "solutions/industry.html"); 
		menu2.addItem("Technology", "solutions/technology.html");
		menu2.addItem("Delivery", "solutions/delivery.html");
		
		var submenu0 = menu1.addMenu(menu1.items[0]);
		submenu0.addItem("Overview", "consulting.html?buttonId=0");
		submenu0.addItem("Approach", "consulting.html?buttonId=1");
		submenu0.addItem("Solutions", "consulting.html?buttonId=2");
		submenu0.addItem("People", "consulting.html?buttonId=3");
		submenu0.addItem("Case Studies", "consulting.html?buttonId=4");
		submenu0.addItem("Partners", "consulting.html?buttonId=5");
		
		var submenu1 = menu1.addMenu(menu1.items[1]);
		submenu1.addItem("Overview", "monitoring.html?buttonId=0");
		submenu1.addItem("Applications", "monitoring.html?buttonId=1");
		submenu1.addItem("Connectivity", "monitoring.html?buttonId=2");
		submenu1.addItem("Hardware", "monitoring.html?buttonId=3");
		submenu1.addItem("Response", "monitoring.html?buttonId=4");	
				
		var submenu2 = menu1.addMenu(menu1.items[2]);
		submenu2.addItem("Overview", "hosted.html?buttonId=0");
		submenu2.addItem("Business Packages", "hosted.html?buttonId=1");
		submenu2.addItem("Disaster Recovery", "hosted.html?buttonId=2");
		submenu2.addItem("Collocation", "hosted.html?buttonId=3");
		submenu2.addItem("VoIP and PBX", "hosted.html?buttonId=4");	
		submenu2.addItem("Virtualization", "hosted.html?buttonId=5");
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("aboutMenu"));
		menu2.addItem("Who We Are", "about.html");
		menu2.addItem("Careers", "careers.html");
		menu2.addItem("Contact Us", "contact.html");

		TransMenu.renderAll();
	}
     