// 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
	//==================================================================================================
	
				var menu1 = ms.addMenu(document.getElementById('menu1'));

				menu1.addItem("Grant Round Information and Application Packet", '/community-programs/land-and-water-conservation-fund/grant-round-information-and-application-packet/');
					var submenu1 = menu1.addMenu(menu1.items[0]);



				menu1.addItem("News", '/community-programs/land-and-water-conservation-fund/news.aspx');
				menu1.addItem("Contact Us", 'mailto:jcarey@dred.state.nh.us');
				menu1.addItem("LWCF Annual Report", 'http://www.nps.gov/ncrc/programs/lwcf/LWCF_AnnualReport_2008.pdf');
				menu1.addItem("LWCF Self-Inspection", '/community-programs/land-and-water-conservation-fund/LWCF-Self-Inspection.aspx');


				var menu2 = ms.addMenu(document.getElementById('menu2'));

				menu2.addItem("Bus Pass Program Overview: Options and Pricing", '/community-programs/bus-pass-program/bus-pass-program-overview.aspx');
				menu2.addItem("Bus Pass Program Policies", '/community-programs/bus-pass-program/bus-pass-program-policies.aspx');
				menu2.addItem("Contact Us", 'mailto:nhrecserv@dred.state.nh.us');


				var menu3 = ms.addMenu(document.getElementById('menu3'));



				var menu4 = ms.addMenu(document.getElementById('menu4'));




	//==================================================================================================

	//==================================================================================================
		
	TransMenu.renderAll();
}
