 	// 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>What is an Eruv?</strong>", "/what-is-an-eruv.cfm");
		menu1.addItem(" <strong>Checking the Eruv</strong>", "/checking-the-eruv.cfm");
		
		var menu2 = ms.addMenu(document.getElementById("Email"));
		menu2.addItem(" <strong>Mailing List</strong>", "/Mailing_list.cfm");
		menu2.addItem(" <strong>Yahoo Groups</strong>", "/yahoo-groups.cfm");

		var menu3 = ms.addMenu(document.getElementById("Membership"));
		menu3.addItem(" <strong>Coordinators</strong>", "/coordinators.cfm");		
		menu3.addItem(" <strong>Become a Member</strong>", "/membership.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();
	}

