	// 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, 138, -25, 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("Rates"));
		menu1.addItem("Share/Savings Account Rates", "Rates_Deposit.asp");
		menu1.addItem("Business Rates", "Rates_Business.asp");
		menu1.addItem("Certificates", "Rates_Cert.asp");
		menu1.addItem("Auto Loans", "Rates_Auto.asp");
		menu1.addItem("Motorcycle, Boats, & RV Loans", "Rates_Rec.asp");
		menu1.addItem("Mortgages & Home Equity", "Rates_Mortgage.asp");
		menu1.addItem("Signature Loans", "Rates_Sig.asp");
		menu1.addItem("VISA Credit Card", "Rates_Visa.asp");
		menu1.addItem("Fee Schedule", "FeeSchedule.asp");


		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("ProdServ"));
		menu2.addItem("Checking Accounts", "Checking.asp");
		menu2.addItem("Share/Savings Accounts", "Savings.asp");
		menu2.addItem("Business Services", "BusinessServices.asp");
		menu2.addItem("Certificates", "Certs.asp");
		menu2.addItem("Money Market Gold Account", "MMGold.asp");
		menu2.addItem("Youth Accounts", "Youth.asp");
		menu2.addItem("Club Accounts", "Club.asp");
		menu2.addItem("IRAs", "IRA.asp");
		menu2.addItem("Auto and Home Insurance", "FinPlanning.asp");
		menu2.addItem("Housing & Credit Counseling", "Housing.asp");
		menu2.addItem("e*teller", "ETeller.asp");
		menu2.addItem("BillPay", "OnlineBillPay.asp");


		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("Loans"));
		menu3.addItem("Apply for a Loan", "https://www.creditunionwebsites.com/V004U21MOY/educational/LoanApp.asp");
		menu3.addItem("Auto Loans", "Loans_Auto.asp");
		menu3.addItem("Motorcycle, Boats, & RV Loans", "Loans_Boat.asp");
		menu3.addItem("First Mortgage", "Loans_Mortgage.asp");
		menu3.addItem("Home Equity Loans", "Loans_HELOC.asp");
		menu3.addItem("VISA Credit Card", "VisaCreditCard.asp");


		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("About"));
		menu4.addItem("Contact Us", "Contact.asp");
		menu4.addItem("Hours & Locations", "Locations.asp");
		menu4.addItem("ATM Locations", "ATM.asp");
		menu4.addItem("Service Centers", "ServiceCenters.asp");
		menu4.addItem("History", "History.asp");
		menu4.addItem("Member Qualifications", "Members.asp");
		menu4.addItem("Board Members", "Board.asp");
		menu4.addItem("Financials", "Financials.asp");
		menu4.addItem("Newsletters", "Newsletters.asp");


		//==================================================================================================

		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("Extras"));
		menu5.addItem("Discount Tickets", "Tickets.asp");
		menu5.addItem("ECU Scholarship Program", "Scholarship.asp");		
		menu5.addItem("Free Services", "FreeServices.asp");
		menu5.addItem("Safe Deposit Boxes", "DepositBoxes.asp");
		menu5.addItem("Cashier's Checks & Money Orders", "CashierChecks_MoneyOrders.asp");
		menu5.addItem("Wire Transfers", "WireTransfers.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();
	}
