
	if (mtDropDown.isSupported()) {

		//==================================================================================================
		var ms = new mtDropDownSet(mtDropDown.direction.right, 0, 0, mtDropDown.reference.topRight);

		//==================================================================================================	
		// to add a sub menu to an existing menu object, call it's 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])
		//==================================================================================================

	
		// menu : Photo Gallery
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Views", "../../eng/gallery/views.html");
		menu4.addItem("Anglo-Georgian Expedition", "javascript:void(null)");

			   // Sub menu: Photo Gallery
				var subMenu1 = menu4.addMenu(menu4.items[1]);
				subMenu1.addItem("Finds", "../../eng/gallery/finds.html");
				subMenu1.addItem("Staff", "../../eng/gallery/people.html");


		// menu : Videos
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Monument", "../../eng/videos/index.html");
		menu5.addItem("Various", "../../eng/videos/various.html");


		// menu : Expedition
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("Anglo-Georigian Expedition to Nokalakevi", "../../eng/expedition/index.html");
		menu6.addItem("First Expeditions in Nokalakevi", "../../eng/expedition/others.html");


		// menu : Georgia
		var menu9 = ms.addMenu(document.getElementById("menu9"));
		menu9.addItem("Introduction", "../../eng/georgia/index.html");
		menu9.addItem("Land and Resources", "../../eng/georgia/land.html");
		menu9.addItem("Population", "../../eng/georgia/population.html");
		menu9.addItem("Economy", "../../eng/georgia/economy.html");
		menu9.addItem("Government", "../../eng/georgia/government.html");
		menu9.addItem("History", "../../eng/georgia/history.html");


		 
		// menu : Guestbook
		var menu10 = ms.addMenu(document.getElementById("menu10"));
		menu10.addItem("View", "../../eng/guestbook/view.html");
		menu10.addItem("Sign", "../../eng/guestbook/sign.html");

		
		

// menu : SUBMENU EXAMPLE!!!
//		var menu6 = ms.addMenu(document.getElementById("menu6"));
//		menu6.addItem("something1", "something1.html");
//		menu6.addItem("something2", "something2.html");
//		menu6.addItem("something3", "");
//		menu6.addItem("something4", "");

//		var subMenu1 = menu6.addMenu(menu6.items[2]);
//		subMenu1.addItem("1", "1.html");
//		subMenu1.addItem("2", "2.html");
//		subMenu1.addItem("3", "3.html");
		
//			var subMenu1 = menu6.addMenu(menu6.items[3]);
//			subMenu1.addItem("1", "1.html");
//			subMenu1.addItem("2", "2.html");
//			subMenu1.addItem("3", "3.html");
//			subMenu1.addItem("4", "4.html");
	
//			var subMenu1 = menu6.addMenu(menu6.items[4]);
//			subMenu1.addItem("1", "1.html");
//			subMenu1.addItem("2", "2.html");
//			//subMenu1.addItem("3", "3.html");
			
//			var subMenu1 = menu6.addMenu(menu6.items[6]);
//			subMenu1.addItem("1", "1.html");
//			subMenu1.addItem("2", "2.html");
		
		//==================================================================================================

		mtDropDown.renderAll();
	}