

	// set up drop downs anywhere in the body of the page. I think the bottom of the page is better.. 
	// but you can experiment with effect on loadtime.
	if (mtDropDown.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 mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================

 
 //menu : #1
var menu1 = ms.addMenu(document.getElementById("menu1"));
menu1.addItem("WELCOME",  active_dir + "advanced_fertility_care/index.html"); 
menu1.addItem("OUR MISSION",  active_dir + "advanced_fertility_care/our_mission.html"); 
menu1.addItem("MEET THE TEAM",  active_dir + "advanced_fertility_care/meet_our_team.html");
menu1.addItem("SUCCESS RATES",  active_dir + "advanced_fertility_care/success_rates.html");
menu1.addItem("TESTIMONIALS",  active_dir + "advanced_fertility_care/testimonials.html");
menu1.addItem("TOUR OUR FACILITY",  active_dir + "advanced_fertility_care/tour_facility.html");
menu1.addItem("TOUR OUR LAB",  active_dir + "advanced_fertility_care/tour_lab.html");


// menu : #2

var menu2 = ms.addMenu(document.getElementById("menu2"));
menu2.addItem("DIAGNOSING INFERTILITY",  active_dir + "infertility_diagnosis_phoenix/index.html");
menu2.addItem("DIAGNOSTIC TESTING",  active_dir + "infertility_diagnosis_phoenix/diagnosis_testing.html");
menu2.addItem(" - FEMALE TESTING",  active_dir + "infertility_diagnosis_phoenix/female_testing.html");
menu2.addItem(" - MALE TESTING",  active_dir + "infertility_diagnosis_phoenix/male_testing.html");



// menu : #3
var menu3 = ms.addMenu(document.getElementById("menu3"));
menu3.addItem("OVERVIEW", active_dir + "infertility_treatment_phoenix/index.html");
menu3.addItem("BEGINNING OPTIONS", active_dir + "infertility_treatment_phoenix/beginning_option.html");
menu3.addItem("IVF/ADVANCED OPTIONS", active_dir + "infertility_treatment_phoenix/advanced_option.html");



// menu : #4
var menu4 = ms.addMenu(document.getElementById("menu4"));
menu4.addItem("SERVICES OFFERED",  active_dir + "fertility_services_phoenix/index.html");

// menu : #5
var menu5 = ms.addMenu(document.getElementById("menu5"));
menu5.addItem("BECOME A DONOR",  active_dir + "egg_donor_program_phoenix/egg_donor.html");
menu5.addItem("HSG PATIENTS",  active_dir + "egg-donor-program-phoenix-az/hsg_patients.html");
menu5.addItem("BECOME A PARENT",  active_dir + "egg_donor_program_phoenix/egg_recipient.html");




// menu : #6
var menu6 = ms.addMenu(document.getElementById("menu6"));
menu6.addItem("DIAGNOSTIC TESTING FEE",  active_dir + "financial_plans/diagnostic_testing_fee.html");
menu6.addItem("OVULATION INDUCTION & INSEMINATION FEES",  active_dir + "financial_plans/insemination_flat_fee.html");
menu6.addItem("IVF FLAT FEE PROGRAM",  active_dir + "financial_plans/ivf_flat_fee.html");
menu6.addItem("IVF 100% MONEY BACK GUARANTEE",  active_dir + "financial_plans/ivf_guarantee.html");
menu6.addItem("DONOR FLAT FEE PROGRAM",  active_dir + "financial_plans/donor_flat_fee.html");
menu6.addItem("DONOR 100% MONEY BACK GUARANTEE",  active_dir + "financial_plans/donor_guarantee.html");
menu6.addItem("FINANCING OPTIONS",  active_dir + "financial_plans/financing_options.html");
menu6.addItem("INSURANCE PLANS",  active_dir + "financial_plans/insurance_plans.html");


// menu : #7
var menu7 = ms.addMenu(document.getElementById("menu7"));
menu7.addItem("OUR LOCATIONS",  active_dir + "contact/index.html");
menu7.addItem("ONLINE MAP & LOCATIONS"); 
menu7.addItem(" - SCOTTSDALE",  active_dir + "contact/scottsdale.html");
menu7.addItem(" - TEMPE",  active_dir + "contact/tempe.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.
		//==================================================================================================
		mtDropDown.renderAll();
	}

