
	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 menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Mission", "/about-macc/mission.asp"); 
		menu2.addItem("Members", "/about-macc/members.asp"); 
		menu2.addItem("Committees & Committee Members", "/about-macc/committees-and-committee-members.asp"); 
		
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Listing", "/area-colleges/listing.asp"); 
		menu3.addItem("Admissions", "/area-colleges/admissions.asp"); 
		menu3.addItem("Featured Faculty", "/area-colleges/featured-faculty.asp"); 
		menu3.addItem("Speakers", "/area-colleges/speakers.asp"); 

		
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Calendar of Events", "/news-and-events/calendar-of-events.asp");
		menu4.addItem("Press Releases", "/news-and-events/press-releases.asp");

		
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Contact Information", "/contact/");
		
			var submenu0 = menu5.addMenu(menu5.items[0]);
	
	
			submenu0.addItem("Media", "/contact/media.asp");
			submenu0.addItem("Students", "/contact/students.asp");

				
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("About Manchester and NH", "/manchester-area/about-manchester-and-nh.asp");
		menu6.addItem("Calendar of Events", "/manchester-area/calendar-of-events.asp");
		menu6.addItem("Places to See", "/manchester-area/places-to-see.asp");
		menu6.addItem("Places to Eat", "/manchester-area/places-to-eat.asp");
		menu6.addItem("Places to Stay", "/manchester-area/places-to-stay.asp");
		menu6.addItem("Places to Shop", "/manchester-area/places-to-shop.asp");


		TransMenu.renderAll();
	}
