	// 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



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



		var menu1 = ms.addMenu(document.getElementById("menu1"));



		menu1.addItem("- DR. REINKE", 'javascript:popup("jr.html",600,530)');   



		menu1.addItem("- DR. RHULAND", 'javascript:popup("sr.html",597,530)');  



		menu1.addItem("- DR. LANGO", 'javascript:popup("tl.html",587,440)');

 

		menu1.addItem("- DR. MORRIS", 'javascript:popup("pm.html",587,400)');  



		menu1.addItem("- AERICA SAVAGE, C.R.N.P", 'javascript:popup("as.html",587,450)');  





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



                // to add a sub menu to an existing menu object, call its addMenu method and pass it the item from



		// the parent menu which should act as it's actuator. To add a submenu to the fourth item of a menu



		// called "theMenu", you would do theMenu.addMenu(theMenu.items[3])



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







		//var subMenu1 = menu1.addMenu(menu1.items[1]);



		//subMenu1.addItem("name", "link");







		// menu2 : SERVICES



		var menu2 = ms.addMenu(document.getElementById("menu2"));



		menu2.addItem("- ALL SERVICES", "services.html");



                menu2.addItem("- Cardiac Stress Testing", 'javascript:popup("stress.html",668,562)');



		menu2.addItem("- Echocardiogram with Doppler Colorflow", 'javascript:popup("echo.html",675,451)');



                menu2.addItem("- Enhanced External Counterpulsation (EECP)", 'javascript:popup("eecp.html",670,430)');



		menu2.addItem("- Holter Monitoring", 'javascript:popup("holter.html",670,635)');



		menu2.addItem("- Nuclear Stress Testing",  'javascript:popup("nuclear.html",673,545)');



		menu2.addItem("- Angioplasty & Stents",  'javascript:popup("angio.html",670,392)');				



		menu2.addItem("- Atherectomy",  'javascript:popup("atherectomy.html",664,480)');	



		menu2.addItem("- Automatic Implantable Cardioverter Difibrillator (AICD)", 'javascript:popup("aicd.html",664,380)');



		menu2.addItem("- Cardiac & Peripheral Cathererization", 'javascript:popup("cath.html",673,426)');



		menu2.addItem("- Carotid Stenting", 'javascript:popup("stents.html",673,470)');



		menu2.addItem("- Pacemakers & Pacemaker Follow-Ups", 'javascript:popup("pacemaker.html",667,412)');



		menu2.addItem("- Transesophageal Echocardiography (TEE)", 'javascript:popup("tee.html",668,460)');

			

		

               // menu3 : FAQ



		var menu3 = ms.addMenu(document.getElementById("menu3"));



		menu3.addItem("- FAQ", "faq.html");





		// menu4 : LINKS



		var menu4 = ms.addMenu(document.getElementById("menu4"));



		menu4.addItem("- LINKS", "links.html");





		// menu5 : LOCATION



		var menu5 = ms.addMenu(document.getElementById("menu5"));



		menu5.addItem("- FLORENCE", "location.html");

		menu5.addItem("- RUSSELLVILLE", "location2.html");




		// menu6 : REFERRAL



		var menu6 = ms.addMenu(document.getElementById("menu6"));



		menu6.addItem("- REFERRAL", "referral.html");





		// menu7 : CONTACT



		var menu7 = ms.addMenu(document.getElementById("menu7"));



		menu7.addItem("- CONTACT", "contact.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();



	}




