// 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, -5, 25, TransMenu.reference.bottomleft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		
						var menu4 = ms.addMenu(document.getElementById("1"));
		
		menu4.addItem("BMA National", "index.php?id=2");
		menu4.addItem("BMA Houston", "index.php?id=3");
		menu4.addItem("Board of Directors", "index.php?id=4");
		menu4.addItem("Committees/Volunteers", "index.php?id=5");
		menu4.addItem("Code of Ethics", "index.php?id=6");
		
		
		
		
		//==================================================================================================

		var menu5 = ms.addMenu(document.getElementById("2"));
		
		menu5.addItem("Member Benefits", "index.php?id=7");
		menu5.addItem("Membership Application", "http://www.marketing.org/i4a/pages/index.cfm?pageID=5471");
		menu5.addItem("Renew Membership", "https://www.marketing.org/i4a/ams/amslogin.cfm?nextpage=/i4a/pages/index.cfm?pageid=3877 ");
		
		
	
		
		
		
		//==================================================================================================
		
				var menu6 = ms.addMenu(document.getElementById("3"));
		
		menu6.addItem("Upcoming Events", "index.php?id=8");
		menu6.addItem("Lantern Awards of Texas", "http://www.lanternawards.org");
		menu6.addItem("Auction","index.php?id=18");
		menu6.addItem("Golf","index.php?id=19");
		menu6.addItem("Past Events","http://www.bmahouston.com/index.php?id=34");

		
		
		//==================================================================================================
		
		
				var menu7 = ms.addMenu(document.getElementById("4"));
		
		menu7.addItem("Internships", "index.php?id=21");
		menu7.addItem("Scholarships", "index.php?id=22");
		
		

//==================================================================================================


			var menu8 = ms.addMenu(document.getElementById("5"));
		
		
		menu8.addItem("Past Presidents", "index.php?id=24");
		menu8.addItem("Past Board of Directors", "index.php?id=25");
		menu8.addItem("Past Events", "index.php?id=34");
		

//==================================================================================================

			var menu9 = ms.addMenu(document.getElementById("6"));
		
		menu9.addItem("Open Positions", "index.php?id=26");
		
		
		

//==================================================================================================

		var menu10 = ms.addMenu(document.getElementById("7"));
		
		menu10.addItem("Our Sponsors", "index.php?id=28");
		menu10.addItem("Sponsorships", "index.php?id=29");
		menu10.addItem("Pay Invoice", "https://bmahouston.ejoinme.org/?tabid=181039");
		
		

//==================================================================================================
		


		


		TransMenu.renderAll();
	}
