if (mtDropDown.isSupported()) {
	var ms = new mtDropDownSet(mtDropDown.direction.right, 145, -22, mtDropDown.reference.bottomLeft);
	
	// COTTAGE LISTINGS
	var menu1 = ms.addMenu(document.getElementById("menu1"));
	menu1.addItem("By area", "area.htm");
	menu1.addItem("All listings", "listing.htm");
	menu1.addItem("Advanced search", "search_adavanced.htm");
	menu1.addItem("Simple search", "search.htm");
	menu1.addItem("Calendar by area", "area_calendar.htm");
	menu1.addItem("My Favourites", "favorites.htm");
	
	// ABOUT THE AREA
	var menu2 = ms.addMenu(document.getElementById("menu2"));
	menu2.addItem("Maps/Photos", "maps_and_photos.htm");
	menu2.addItem("Things to do", "things_to_do.htm");
	
	mtDropDown.renderAll();
}