 	// 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.down, 0, 0, mtDropDown.reference.bottomLeft);

		var menu1 = ms.addMenu(document.getElementById("World Phone Rates"));
		menu1.addItem(" <strong>International Rates</strong>", "/rates.cfm");
		menu1.addItem(" <strong>Israel Only</strong>", "/israel-only.cfm");
		menu1.addItem(" <strong>US Only</strong>", "/usSIM.cfm");		

		var menu2 = ms.addMenu(document.getElementById("Phones & Features"));
		menu2.addItem(" <strong>Phone Models</strong>", "/phones-features.cfm");
		menu2.addItem(" <strong>Add a US Number</strong>", "/us-numbers.cfm");
		
		var menu3 = ms.addMenu(document.getElementById("U.S.A. SIM"));
		menu3.addItem(" <strong>Order Now</strong>", "/app/simcheckout.cfm");
		menu3.addItem(" <strong>International Rates</strong>", "/us_sim_international_rates.cfm");
		menu3.addItem(" <strong>Activate</strong>", "/service_unavailable.cfm");
		menu3.addItem(" <strong>Add Airtime</strong>", "/service_unavailable.cfm");
		
		/*
		var menu3 = ms.addMenu(document.getElementById("Travel Tools"));
		menu3.addItem(" <strong>Flight Info</strong>", "#");
		menu3.addItem(" <strong>Weather</strong>", "#");
		*/


		//==================================================================================================
		// 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();
	}

