if (TransMenu.isSupported()) {
	
	var ms = new TransMenuSet(TransMenu.direction.down, 0, 0, TransMenu.reference.bottomLeft);
	// var msp = new TransMenuSet(TransMenu.direction.down, -50, 0, TransMenu.reference.bottomLeft);

	//==================================================================================================
	// create a dropdown menu
	//==================================================================================================
	// the first parameter should be the HTML element which will act actuator for the menu
	//==================================================================================================
	
	// NOTE - use only relative or absolute paths in this file (no rails-style links)
	//==================================================================================================
	
	var menu1 = ms.addMenu(document.getElementById("nav_locate"));
	menu1.addItem("Location Map", "/locate-in-tift/location-map");
	menu1.addItem("Business Incentives", "/locate-in-tift/business-incentives");
	menu1.addItem("By the Numbers", "/locate-in-tift/by-the-numbers");
	menu1.addItem("Buildings &amp; Sites", "/locate-in-tift/commercial-properties");
	menu1.addItem("Resource Library", "/helpful-links");
	
		
	//==================================================================================================
	
	var menu2 = ms.addMenu(document.getElementById("nav_live"));
	menu2.addItem("Education", "/live-in-tift/education");
	menu2.addItem("Health Care", "/live-in-tift/health-care");
	menu2.addItem("Arts &amp; Entertainment", "/live-in-tift/arts-and-entertainment");
	menu2.addItem("Recreation", "/live-in-tift/recreation");
	menu2.addItem("Calendar", "/events");
	menu2.addItem("Resource Library", "/helpful-links");
	
	
	//==================================================================================================
	
	var menu3 = ms.addMenu(document.getElementById("nav_resources"))
	menu3.addItem("Useful Links", "/helpful-links");
	menu3.addItem("Helpful Documents", "/documents/list");
	
	
	//==================================================================================================
	
	var menu4 = ms.addMenu(document.getElementById("nav_chamber"));
	menu4.addItem("Chamber Home Page", "/chamber-connections");
	menu4.addItem("Member Directory", "http://www.chamberdata.net/webforms/onlinemenu.aspx?dbid2=gatif");
	menu4.addItem("Member Services", "/chamber-connections/member-services");
	menu4.addItem("Community Development", "/chamber-connections/community-development");
	menu4.addItem("Calendar", "/events");
	menu4.addItem("Resource Library", "/helpful-links");
	

	//==================================================================================================
	
	// var menu5 = ms.addMenu(document.getElementById(""));
	// 	menu5.addItem("", "/");
	// 	menu5.addItem("", "/");
	// 	menu5.addItem("", "/");
	// 	menu5.addItem("", "/");
	
	//==================================================================================================	
	
	//==================================================================================================
	//==================================================================================================
	// 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();
}