// 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.left, 0, 0, TransMenu.reference.topRight);

		//==================================================================================================
		// 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("<b>&raquo;</b> About Us", "entrust_aboutus.html");
		menu1.addItem("<b>&raquo;</b> Our Mission", "entrust_ourmission.html");
		menu1.addItem("<b>&raquo;</b> Our Executive Team", "entrust_executive_team.html");
		menu1.addItem("<b>&raquo;</b> Testimonials", "coming_soon.html");
		menu1.addItem("<b>&raquo;</b> Community Involvement", "coming_soon.html");
		menu1.addItem("<b>&raquo;</b> Careers", "careers.html");

		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("<b>&raquo;</b> Administration", "#");
		menu2.addItem("<b>&raquo;</b> Vendor Management", "#");
		menu2.addItem("<b>&raquo;</b> Unbundled Services", "#");
		
		var submenu0 = menu2.addMenu(menu2.items[0]);
		submenu0.addItem("Plan Design & Consulting", "services_admin_plandesignandconsulting.html");
		submenu0.addItem("Claims Adjudication & Processing", "services_admin_claimadjusting.html");
		submenu0.addItem("Trust Accounting", "services_admin_trustaccounting.html");
		submenu0.addItem("COBRA, HIPAA and MEDICARE PART D Services", "services_admin_cobrahd.html");
		submenu0.addItem("HIPAA Compliance & Privacy Training", "services_admin_hippa.html");
		submenu0.addItem("Disease Management", "services_admin_diseasemgt.html");
		submenu0.addItem("Customer Service", "coming_soon.html");
		submenu0.addItem("Standard Monthly Reporting", "coming_soon.html");
		submenu0.addItem("Cost Containment Analysis", "coming_soon.html");
		submenu0.addItem("Pre-Certification & Utilization Review", "services_admin_precertif.html");
	
		var submenu1 = menu2.addMenu(menu2.items[1]);
		submenu1.addItem("PPO Network Management", "services_vm_pponetworkmanagement.html");
		submenu1.addItem("Stop-Loss Negotiations", "services_vm_stoplossnegotiations.html");
		submenu1.addItem("Capitated Rx Program and PBM Coordination", "services_vm_capitatedrxprogram.html");
		submenu1.addItem("24 Hour Ask-a-Nurse", "services_vm_24hraskanurse.html");
		submenu1.addItem("Wellness Programs", "services_vm_wellnessprogram.html");

		var submenu2 = menu2.addMenu(menu2.items[2]);
		submenu2.addItem("Benefit Modeling", "services_us_benefitmodeling.html");
		submenu2.addItem("Data Warehouse Research and Plan Forecasting", "services_us_datawarehouseresearch.html");
		submenu2.addItem("Employee Communication Tools & Web Claim Portal", "services_us_employeecommunicationtool.html");
		submenu2.addItem("Consolidated Billing and Payroll Deductions", "services_us_consolidatedbilling.html");

		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("<b>&raquo;</b> Traditional Specific & Aggregate", "signature_service_traditional_aggravate.html");
		menu3.addItem("<b>&raquo;</b> Spaggregate", "signature_service_spaggregate.html");
		menu3.addItem("<b>&raquo;</b> Class-based Carve Outs", "signature_service_classbasedhealthplan.html");
		menu3.addItem("<b>&raquo;</b> Capitation", "signature_service_capitation.html");
		menu3.addItem("<b>&raquo;</b> Family Monthly Deductible", "signature_service_family_deductible.html");
		menu3.addItem("<b>&raquo;</b> RealCare", "http://www.realcareplus.com/");
		menu3.addItem("<b>&raquo;</b> Affinity Group Programs", "#");
		
		var submenu3 = menu3.addMenu(menu3.items[6]);
		submenu3.addItem("Plus Plans", "http://www.plusplans.org");
		submenu3.addItem("Ford Blue Oval", "coming_soon.html");
		submenu3.addItem("Case New Holland", "coming_soon.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.
		//==================================================================================================
		TransMenu.renderAll();
	}