	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);

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

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&nbsp;&nbsp;Overview", "/about_our_chapter/index.html");
		menu2.addItem("&nbsp;&nbsp;History of Ani Chapter", "/about_our_chapter/history.html");
		menu2.addItem("&nbsp;&nbsp;History of Homenetmen", "/about_our_chapter/history_homenetmen.html");
		menu2.addItem("&nbsp;&nbsp;Executive Committee", "/about_our_chapter/executive_committee.html");
		menu2.addItem("&nbsp;&nbsp;Documents", "/about_our_chapter/documents.html");
		menu2.addItem("&nbsp;&nbsp;Gallery", "/about_our_chapter/gallery.html");
		menu2.addItem("&nbsp;&nbsp;Sign Up", "/about_our_chapter/signup.html");
		
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("&nbsp;&nbsp;Overview", "/scouts/index.html");
		menu3.addItem("&nbsp;&nbsp;Scouts Committee", "/scouts/scouts_committee.html");
		menu3.addItem("&nbsp;&nbsp;Events", "/cgi-bin/calendar/webcal.pl"); 
		 
		 var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("&nbsp;&nbsp;Overview", "/athletics/index.html");
		menu4.addItem("&nbsp;&nbsp;Athletics Committee", "/athletics/athletics_committee.html");
		menu4.addItem("&nbsp;&nbsp;Events", "/cgi-bin/calendar/webcal.pl");
		
		
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("&nbsp;&nbsp;Overview", "/social/index.html");
		menu5.addItem("&nbsp;&nbsp;Social Committee", "/social/social_committee.html");
		menu5.addItem("&nbsp;&nbsp;Events", "/cgi-bin/calendar/webcal.pl");
		
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("&nbsp;&nbsp;Overview", "/news_events/index.html");
		menu6.addItem("&nbsp;&nbsp;Ani Newsletter", "/news_events/ani_newsletter.html");
		menu6.addItem("&nbsp;&nbsp;Events & Calendar", "/cgi-bin/calendar/webcal.pl");
		
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("&nbsp;&nbsp;Overview", "/links/index.html");
		
		var menu8 = ms.addMenu(document.getElementById("menu8"));
	     menu8.addItem("&nbsp;&nbsp;Overview", "/contacts/index.html");
		  menu8.addItem("&nbsp;&nbsp;Varchoutyun", "/contacts/varchoution.html");
		  menu8.addItem("&nbsp;&nbsp;Contact Form", "/contacts/contact_form.html");
		   menu8.addItem("&nbsp;&nbsp;Our Gym", "/contacts/our_gym.html");
		//==================================================================================================

		//==================================================================================================
		// 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();
	}