 	// set up drop downs anywhere in the body of the page. 
	if (mtDropDown.isSupported()) {

		//==================================================================================================
		// create a set of dropdowns: By the way, youngpup.net created this script not mt...
		//==================================================================================================

		var ms = new mtDropDownSet(mtDropDown.direction.up, 0, 0, mtDropDown.reference.bottomLeft);

		var menu1 = ms.addMenu(document.getElementById("Eruv"));
		menu1.addItem(" <strong>Maps</strong>", "/map.cfm");
		menu1.addItem(" <strong>Mailing List</strong>", "/Mailing_list.cfm");
		menu1.addItem(" <strong>Guidelines</strong>", "/guidelines.cfm");
		menu1.addItem(" <strong>FAQs</strong>", "/faqs.cfm");
		menu1.addItem(" <strong>Coordinators</strong>", "/about_us.cfm");		

		var menu2 = ms.addMenu(document.getElementById("Community"));
		menu2.addItem(" <strong>Committees</strong>", "/committees.cfm");
		menu2.addItem(" <strong>Springfield Community List</strong>", "/community");
		menu2.addItem(" <strong>Yahoo Groups</strong>", "/yahoo-groups.cfm");
		menu2.addItem(" <strong>Real Estate</strong>", "/building-listings.cfm");
/*
		var menu3 = ms.addMenu(document.getElementById("Minyanim"));
		menu3.addItem(" <strong>Room 101</strong>", "/minyanim/101/");
		menu3.addItem(" <strong>Zmanim</strong>", "/Zmanim_5766.pdf");


		var menu4 = ms.addMenu(document.getElementById("Dealers"));
		menu4.addItem(" <strong>Featured Dealers</strong>", "/news/index.cfm?type=Dealers");
		menu4.addItem(" <strong>Flashes &amp; Forms</strong>", "/flashes-forms.cfm");
		menu4.addItem(" <strong>Ameritel Login</strong>", "/ameritel-login.cfm");
		menu4.addItem(" <strong>Employment Opportunities</strong>", "/news/index.cfm?type=Jobs");

		var menu5 = ms.addMenu(document.getElementById("Partners"));
		menu5.addItem(" <strong>Sprint/Nextel</strong>", "/carrier-partners-sprint.cfm");
		menu5.addItem(" <strong>T-Mobile </strong>", "/carrier-partners-t-mobile.cfm");
		menu5.addItem(" <strong>Boost Mobile</strong>", "/carrier-partners-boost.cfm ");

		*/

		//==================================================================================================
		// 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.
		//==================================================================================================
		mtDropDown.renderAll();
		init();
	}
