
// 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()) {

	var ms = new TransMenuSet(TransMenu.direction.down, 0, 0, TransMenu.reference.bottomLeft);

	var menu1 = ms.addMenu(document.getElementById("subMenu1"));
	menu1.addItem("Retirement Plan Admin", "/retirementplanadmin.asp");
	menu1.addItem("Payroll", "/payroll.asp");	
	menu1.addItem("Flex/125 Plans", "/flex125plans.asp");	

	var menu2 = ms.addMenu(document.getElementById("subMenu2"));
	menu2.addItem("About Us", "/aboutus.asp");
	menu2.addItem("Our Staff", "/staff.asp");	
	menu2.addItem("Testimonials", "/testimonials.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();
}

