
	// 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 (TransMenu.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 TransMenuSet(TransMenu.direction.down, 0, 0, TransMenu.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("aboutus"));
		menu1.addItem("Ideology", "ideology.htm");
		menu1.addItem("Our Team", "team.htm"); 


		//==================================================================================================

		//==================================================================================================

		var menu2 = ms.addMenu(document.getElementById("aboutgoa"));
		menu2.addItem("Partying in Goa", "partying-goa.htm");
		menu2.addItem("The Local Scene", "local-scene.htm"); 
		menu2.addItem("Best Months to enjoy Goa holidays", "best-time-to-visit-goa.htm");
		menu2.addItem("Location", "location.htm");

		//==================================================================================================

		//==================================================================================================


		var menu3 = ms.addMenu(document.getElementById("holidays"));
		menu3.addItem("Hotels", "hotels.htm");
		menu3.addItem("Activity", "activity.htm");

		var submenu1 = menu3.addMenu(menu3.items[1]);

		submenu1.addItem("Anjuna Flea Market", "anjuna-flea-market.htm");
		submenu1.addItem("Castaway Cruise", "castaway-cruise.htm");
		submenu1.addItem("Crocodile Dundee", "crocodile-dundee.htm");
		submenu1.addItem("Sport Fishing & Leisure Cruising", "deep-sea-fishing-goa.htm");
		submenu1.addItem("Houseboat Backwater Cruise", "houseboat-backwater-cruise.htm");
		submenu1.addItem("Dandeli & Little Tibet", "dandeli-little-tibet.htm");
		submenu1.addItem("Sail Back In Time", "sail-back-in-time.htm");



		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("conferences"));
		menu4.addItem("Conference Services", "conference-services.htm");
		menu4.addItem("Conferences Travel Logistics", "travel-logistics-goa.htm");



		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("weddings"));
		menu5.addItem("Wedding Formalities", "wedding-formalities.htm");
		menu5.addItem("Wedding Logistics", "wedding-logistics.htm");
		menu5.addItem("Wedding Decor", "wedding-decor.htm");
		menu5.addItem("Wedding Entertainment", "wedding-entertainment.htm");
		menu5.addItem("Wedding Gallery", "wedding-gallery.htm");

		var submenu1 = menu5.addMenu(menu5.items[4]);

		submenu1.addItem("Drapes", "wedding-drapes.htm");
		submenu1.addItem("Flowers", "wedding-flowers.htm");
		submenu1.addItem("Lighting", "wedding-lighting.htm");
		submenu1.addItem("Mandap", "wedding-mandap.htm");
		submenu1.addItem("Props", "wedding-props.htm");
		submenu1.addItem("Seating Option", "wedding-seating.htm");
		submenu1.addItem("Vidhi Ceremony", "wedding-vidhi.htm");
		submenu1.addItem("White Wedding", "wedding-white.htm");


		//==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("cruising"));
		menu6.addItem("Boat Charters", "cruising-boat-charter.htm");
		menu6.addItem("Learning To Sail", "cruising-boat-sales.htm")
		menu6.addItem("Sales & Maintenance", "cruising-boat-maintenance.htm");
		//==================================================================================================


		//==================================================================================================

		//==================================================================================================

		var menu7 = ms.addMenu(document.getElementById("events"));
		menu7.addItem("Artist Management","events-artist-management.htm");
		menu7.addItem("Award Ceremonies","events-award-ceremonies.htm");
		menu7.addItem("Brand Launches","events-brand-launches.htm");
		menu7.addItem("Event Infrastructure","events-infrastructure.htm");
		menu7.addItem("Team Building Exercises","team-building-exercises.htm");
		menu7.addItem("Theme Evenings","events-theme-evenings.htm");
		menu7.addItem("Success Stories","");

		
		var submenu1 = menu7.addMenu(menu7.items[5]);

		submenu1.addItem("Bollywood Night", "events-bollywood-theme.htm");
		submenu1.addItem("Carnival", "events-carnival-theme.htm");
		submenu1.addItem("Casino Night", "events-casino-night.htm");
		submenu1.addItem("Egyptian Evening", "events-egyptian-theme.htm");
		submenu1.addItem("Indian Mela", "events-indian-mela.htm");
		submenu1.addItem("Oriental Theme", "events-oriental.htm");
		submenu1.addItem("Pirate Night", "events-pirate-night.htm");
		submenu1.addItem("Oceans Of Fantasy", "events-oceans-of-fantasy.htm");

		var submenu1 = menu7.addMenu(menu7.items[6]);

		submenu1.addItem("Success Stories - Bacardi", "events-bacardi.htm");
		submenu1.addItem("Success Stories - LVMH", "events-LVMH.htm");
		submenu1.addItem("Success Stories - Mckinsey", "events-Mckinsey.htm");
		submenu1.addItem("Success Stories - Standard Chartered Bank", "events-scb.htm");
		submenu1.addItem("Success Stories - WNS", "events-WNS.htm");
		submenu1.addItem("Success Stories - Sunburn'09", "events-sunburn.htm");



		//==================================================================================================
		// 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.
		//==================================================================================================
		TransMenu.renderAll();
}
