
	if (mtDropDown.isSupported()) {
		//
		var ms = new mtDropDownSet(mtDropDown.direction.bottom, 0, 0, mtDropDown.reference.bottomLeft);
		// 
		// HOME BUTTON
		//var menu1 = ms.addMenu(document.getElementById("menu1"));
		//
		// OUR STAFF BUTTON
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&nbsp; Stanley A. Sheft, M.D.","staff.html");				
		menu2.addItem("&nbsp; Douglas L. Worden, M.D.","staff.html");
		menu2.addItem("&nbsp; David F. Kroon, M.D.","staff.html");
		menu2.addItem("&nbsp; Stephen M. Schwartz, M.D.","staff.html");
		menu2.addItem("&nbsp; Anoli Maniar, M.D.","staff.html");
		
		//
		// SERVICES BUTTON
	    var menu3 = ms.addMenu(document.getElementById("menu3"));
        menu3.addItem("&nbsp; Ears","ears.html");
		menu3.addItem("&nbsp; Nose & Sinus","nasal.html");
		menu3.addItem("&nbsp; Throat","throat.html");
		menu3.addItem("&nbsp; Allergy","allergy.html");
		menu3.addItem("&nbsp; Snoring & Sleeep Disorders","sleep.html");
		menu3.addItem("&nbsp; Head & Neck","head_neck.html");
		menu3.addItem("&nbsp; Pediatric ENT","pediatric.html");
		menu3.addItem("&nbsp; Hearing","#");		
		menu3.addItem("&nbsp; Facial Plastics","plastics.html");	

		//SUB-MENU IF NEEDED
		//var subMenu21 = menu2.addMenu(menu2.items[0]);
		//subMenu31.addItem("Introduction","intro.html");
		//subMenu31.addItem("Introduction", "intro.html");    
		//subMenu31.addItem("Introduction", "intro.html");        		
		//
		// PRODUCTS BUTTON
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("&nbsp; Product 1","index.html");		
		menu4.addItem("&nbsp; Product 2","index.html");		
		menu4.addItem("&nbsp; Product 3","index.html");		
		//
		// PATIENT RESOURCES BUTTON
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("&nbsp; Forms","forms.html");
		menu5.addItem("&nbsp; Questions","#");
		menu5.addItem("&nbsp; Care Instructions","care.html");
		menu5.addItem("&nbsp; Practice Policies","policies.html");
		menu5.addItem("&nbsp; Patient Education","#");		
		//
		// CONTACT & DIRECTIONS BUTTON
		//var menu6 = ms.addMenu(document.getElementById("menu6"));			 
		//
		mtDropDown.renderAll();
	}

