
	// 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);
				
				var menu1 = ms.addMenu(document.getElementById("menu1"));
					
					menu1.addItem("&nbsp;&nbsp;&nbsp; Where We Started", "1-tarih-eng.html");			
					menu1.addItem("&nbsp;&nbsp;&nbsp; What We Believe", "1-vizyon-eng.html");			
					menu1.addItem("&nbsp;&nbsp;&nbsp; Our Logo", "1-logo-eng.html");			
					menu1.addItem("&nbsp;&nbsp;&nbsp; Contact Us", "1-iletisim-eng.html");			
			
				var menu2 = ms.addMenu(document.getElementById("menu2"));
					menu2.addItem("&nbsp;&nbsp;&nbsp; Board of Directors", "2-yonetim-eng.html");			
					menu2.addItem("&nbsp;&nbsp;&nbsp; Board of Auditors", "2-denetim-eng.html");		
					menu2.addItem("&nbsp;&nbsp;&nbsp; Solidarity Committee", "2-dayanisma-eng.html");			
					menu2.addItem("&nbsp;&nbsp;&nbsp; Alumni Executive Committee", "2-yurutme-eng.html");			
					menu2.addItem("&nbsp;&nbsp;&nbsp; Alumni Board of Auditors", "2-denetleme-eng.html");

				var menu3 = ms.addMenu(document.getElementById("menu3"));
					menu3.addItem("&nbsp;&nbsp;&nbsp; Students", "3-ogrenci-eng.html");			
					menu3.addItem("&nbsp;&nbsp;&nbsp; Alumni", "3-mezun-eng.asp");			
					menu3.addItem("&nbsp;&nbsp;&nbsp; Alumni Information Form", "3-mbformu-eng.html");		
					
				var menu4 = ms.addMenu(document.getElementById("menu4"));
					menu4.addItem("&nbsp;&nbsp;&nbsp; Choir", "4-koro-eng.html");			
					menu4.addItem("&nbsp;&nbsp;&nbsp; Instrument Courses", "4-enstruman-eng.html");			
					menu4.addItem("&nbsp;&nbsp;&nbsp; Credit Courses", "4-kredili-eng.html");			
					menu4.addItem("&nbsp;&nbsp;&nbsp; Deep Group", "4-deringrup-eng.html");			
					menu4.addItem("&nbsp;&nbsp;&nbsp; Activities", "4-etkinlik-eng.html");			
					menu4.addItem("&nbsp;&nbsp;&nbsp; Nevniyaz", "4-nevniyaz-eng.html");
					menu4.addItem("&nbsp;&nbsp;&nbsp; Meşk Meclisi", "4-meskgr-eng.html");
										 
				var menu5 = ms.addMenu(document.getElementById("menu5"));
					menu5.addItem("&nbsp;&nbsp;&nbsp; Rektörlük Korosu", "5-rektorlukkoro.html");			
		
										 
				var menu6 = ms.addMenu(document.getElementById("menu6"));
		
					menu6.addItem("&nbsp;&nbsp;&nbsp; Our Academic Advisors", "6-akademik-eng.html");		
					menu6.addItem("&nbsp;&nbsp;&nbsp; Choir Records", "6-kayitlar-eng.html");			
										 
				var menu7 = ms.addMenu(document.getElementById("menu7"));
					menu7.addItem("&nbsp;&nbsp;&nbsp; Turkish Music Fundamentals", "7-genel-eng.html");			
					menu7.addItem("&nbsp;&nbsp;&nbsp; Turkish Music Periods", "7-donemler-eng.html");			
					menu7.addItem("&nbsp;&nbsp;&nbsp; Turkish Music Theoretics", "7-nazariyat-eng.html");			
					menu7.addItem("&nbsp;&nbsp;&nbsp; Turkish Music  Usuls", "7-usuller-eng.html");			
					menu7.addItem("&nbsp;&nbsp;&nbsp; Turkish Music Composers", "7-bestekarlar-eng.html");			
					menu7.addItem("&nbsp;&nbsp;&nbsp; Music Sheets", "7-notalar-eng.html");			
					menu7.addItem("&nbsp;&nbsp;&nbsp; Instruments", "7-sazlar-eng.html");			
										 
				var menu8 = ms.addMenu(document.getElementById("menu8"));
					menu8.addItem("&nbsp;&nbsp;&nbsp; Yayınlar", "8-yayin.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();
	}

