
	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("menu1"));
		menu1.addItem("Our Company/Mission", "/about-us/our-company-mission.asp"); 
		//menu1.addItem("Management Team", "/about-us/management-team.asp"); 
		menu1.addItem("Overview Brochure", "/about-us/overview-brochure.asp"); 
		menu1.addItem("Careers", "/about-us/careers.asp"); 
		menu1.addItem("Testimonials", "/about-us/testimonials.asp");
		
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Signature Plans", "/plans/signature-plans.asp"); 
		menu2.addItem("Signature Plus", "/plans/signature-plus.asp"); 
		menu2.addItem("Other Health Plans", "/plans/other-health-plans.asp"); 
		menu2.addItem("Forms", "/forms/default.asp"); 
		menu2.addItem("FAQs", "/plans/faqs.asp"); 
		
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("HSA", "/funding/hsa.asp");
		menu3.addItem("HRA", "/funding/hra.asp");
		menu3.addItem("Forms", "/forms/default.asp");
		menu3.addItem("FAQs", "/funding/faqs.asp");

		
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Prescription Drugs", "/decision-tools/prescription-drugs.asp");
		menu4.addItem("Medical Provider Directory", "/decision-tools/medical-provider-dictionary.asp");
		menu4.addItem("Care Management", "/decision-tools/care-management.asp");
		menu4.addItem("Smart Shopper Service", "/decision-tools/smart-shopper-service.asp");
		menu4.addItem("Forms", "/forms/default.asp");
		menu4.addItem("FAQs", "/decision-tools/faqs.asp");


		var menu5 = ms.addMenu(document.getElementById("menu5")); 
		menu5.addItem("Forms", "/forms/default.asp"); 
	
				
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		//menu6.addItem("Live Chat", "/contact-us/live-chat.asp");
		menu6.addItem("Contact Form", "/contact-us/contact-form.asp");
		menu6.addItem("Feedback", "/contact-us/feedback.asp");


		TransMenu.renderAll();
	}
