
	// 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
		
		
		
		// Company   ========================================================================================
		var menu1 = ms.addMenu(document.getElementById("company"));
		menu1.addItem("About Blue Frog", "about.asp");
		menu1.addItem("Press / Events", "press.asp"); // send no URL if nothing should happen onclick
		//menu1.addItem("Fun at the Frog", "#");
		menu1.addItem("Careers", "employment.asp");
		menu1.addItem("Contact Us", "contact.asp");
		//==================================================================================================

		// Products   ========================================================================================
		var menu2 = ms.addMenu(document.getElementById("products", ""));
		menu2.addItem("ADMServer Solutions", "admserver_system.asp");
		menu2.addItem("Order Entry and Compliance", "annuities.asp");
		menu2.addItem("Professional Services", "#");

		var submenu0 = menu2.addMenu(menu2.items[0]);
		submenu0.addItem("ADMServer Solutions Framework", "admserver_system.asp");
		// submenu0.addItem("ADMServer Life Tools", "life_tools.asp");
		submenu0.addItem("ADMServer Product Profile Administrator", "product_profile.asp");
		submenu0.addItem("ADMServer for IPS Connectivity", "ips_connectivity.asp");
		// submenu0.addItem("ADMServer MIB Administrator", "mib_administrator.asp");
		submenu0.addItem("ADMServer New Business Administrator", "new_business.asp");
		submenu0.addItem("BlueSource&trade;", "bluesource.asp");
		// submenu0.addItem("ADMServer Pending Case Administrator", "pending_case.asp");
		submenu0.addItem("DTCC Gateway Services", "dtcc_gateway_services.asp");
		
		var submenu1 = menu2.addMenu(menu2.items[1]);
		submenu1.addItem("AFFIRM&trade; for Annuities Compliance and Order Management", "annuities.asp");
		submenu1.addItem("AFFIRM&trade; Advantage for Annuities", "affirm_advantage.asp");
		submenu1.addItem("Annuity Replacement Evaluator", "are.asp");
		submenu1.addItem("Product Comparison Tool", "compare.asp");

		
	  /* var submenu2 = menu2.addMenu(menu2.items[2]);
		submenu2.addItem("Email Notification Module", "email_notification.html");
		submenu2.addItem("XML Archive Module", "#");
		submenu2.addItem("Constrictor Module", "#");
		submenu2.addItem("Chameleon Module", "chameleon.html");
		submenu2.addItem("Legacy XML Conversion Tool", "");
		
	 */
		
		var submenu2 = menu2.addMenu(menu2.items[2]);
		submenu2.addItem("Acord XMLife/TXLife", "acord.asp");
		// submenu2.addItem("Technology Services", "technology.asp");

		//==================================================================================================

		// MENU 3   ========================================================================================
		
		var menu3 = ms.addMenu(document.getElementById("ourwork", "#"));
		menu3.addItem("Case Studies" , "case_studies.asp");
		menu3.addItem("Demos" , "demo.asp");

		//==================================================================================================

		// MENU 4   ========================================================================================
		var menu4 = ms.addMenu(document.getElementById("clients", "#"));
		menu4.addItem("Client List", "clients.asp");
		menu4.addItem("Testimonials", "testimonials.asp");

		//==================================================================================================

		// MENU 5  ========================================================================================
		var menu5 = ms.addMenu(document.getElementById("partners", "#"));
		menu5.addItem("Alliances", "alliances.asp");
		menu5.addItem("Technology Partners", "technology_partners.asp");
		menu5.addItem("Become a Partner", "partner.asp");


		// 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();
	}

