if (mtDropDown.isSupported()) {
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);
		
		

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Hotels in India","hotels/index.html");
		menu1.addItem("Chain of Hotels in India","hotels/jaypee-group-of-hotels.html");
	
		
		var submenu1 = menu1.addMenu(menu1.items[1]);
		submenu1.addItem("Jaypee Group of Hotels","hotels/jaypee-group-of-hotels.html");
		submenu1.addItem("Trident Group of Hotels","hotels/trident-group-of-hotels.html");
		submenu1.addItem("Oberoi Group of Hotels","hotels/oberoi-group-of-hotels.html");
		submenu1.addItem("HRH Group of Hotels","hotels/hrh-group-of-hotels.html");
		submenu1.addItem("Taj Group of Hotels","tours/taj-hotels-package.html");
		mtDropDown.renderAll();
}

