		<!--
		// 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, 0, 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("menu10"));
			menu1.addItem("Home Care Management Systems", "/our-technologies/home-care-management-systems.htm");
			menu1.addItem("Clinical Documentation Systems for the Office", "/our-technologies/clinical-documentation-systems-for-the-office.htm");
			menu1.addItem("Clinical Documentation Systems for the Point of Care", "/our-technologies/clinical-documentation-systems-for-the-point-of-care.htm");
			menu1.addItem("Advanced Compliance Edit Software", "/our-technologies/advanced-compliance-edit-software.htm");
			menu1.addItem("Care Paths", "/our-technologies/care-paths.htm");
			menu1.addItem("3M Codefinder Software", "/our-technologies/3M-codefinder-software.htm");
			menu1.addItem("Scheduling Systems", "/our-technologies/scheduling-systems.htm");
			//menu1.addItem("Advanced Report Writer", "/our-technologies/advanced-report-writer.htm");
			menu1.addItem("Hospice", "/our-technologies/hospice.htm");
			
				//var submenu0 = menu1.addMenu(menu1.items[1]);
				//submenu0.addItem("Monterosso", "/cinqueterre/104_0458.jpg");
				//submenu0.addItem("Manorola", "/cinqueterre/thumb/104_0474.jpg");
				//submenu0.addItem("Corniglia", "/cinqueterre/104_0472.jpg");
				//submenu0.addItem("Rio Maggiore", "/cinqueterre/105_0522.jpg");
				//submenu0.addItem("Vernazza", "");
				//submenu0.addItem("Apartment", "");
				//submenu0.addItem("Via del Amore", "");
				//submenu0.addItem("Rocky beach", "");
				//submenu0.addItem("Swimming hole", "");

				//var submenu00 = submenu0.addMenu(submenu0.items[0]);
				//submenu00.addItem("foo");
				//submenu00.addItem("bar");
			//==================================================================================================

			//==================================================================================================
			var menu2 = ms.addMenu(document.getElementById("menu20"));
			menu2.addItem("Executive Team", "/our-company/executive-team.htm");
			menu2.addItem("Management Team", "/our-company/management-team.htm");			
			menu2.addItem("Sales Team", "/our-company/sales-team.htm");
			menu2.addItem("Industry Partners", "/our-company/industry-partners.htm");
			//menu2.addItem("Our Community", "/our-company/");
			//==================================================================================================

			//==================================================================================================
			var menu3 = ms.addMenu(document.getElementById("menu30"));
			menu3.addItem("Your Implementation", "/customer-service/your-implementation.htm");
			menu3.addItem("Implementation and Training", "/customer-service/implementation-and-training.htm");
			//menu3.addItem("Customer Support", "/customer-service/customer-support.htm");
			menu3.addItem("Customer Benefits", "/customer-service/customer-benefits.htm");
					//==================================================================================================

			//==================================================================================================
			var menu4 = ms.addMenu(document.getElementById("menu40"));
			menu4.addItem("Press Releases", "/news-and-events/press-releases.htm");
			menu4.addItem("Conferences", "/news-and-events/conferences.htm");
			menu4.addItem("User Sessions", "/news-and-events/user-sessions.htm");
			menu4.addItem("Case Studies", "/news-and-events/case-studies.htm");
			//==================================================================================================

			//==================================================================================================
			var menu5 = ms.addMenu(document.getElementById("menu50"));
			menu5.addItem("Request More Information", "/contact-us/request-more-information-form.htm");
			menu5.addItem("Contact Support", "/contact-us/contact-support.htm");
			menu5.addItem("Career Opportunities", "/contact-us/career-opportunities.htm");
			menu5.addItem("Headquarters", "/contact-us/headquarters.htm");
			
			//==================================================================================================

			//==================================================================================================
			// 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.
			//==================================================================================================
			TransMenu.renderAll();
		}
		//-->