
	// 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
		//==================================================================================================

		//==================================================================================================
		// About Sunset
		//==================================================================================================

		var menu1 = ms.addMenu(document.getElementById("aboutus"));
		menu1.addItem("Ideology", "ideology.htm");
		menu1.addItem("Our Team", "team.htm"); 
		menu1.addItem("Careers", "careers.htm"); 
		menu1.addItem("Associate Companies", "associate-companies.htm"); 
		menu1.addItem("Client List", "client-list.htm");


		//==================================================================================================
		// About Goa
		//==================================================================================================

		var menu2 = ms.addMenu(document.getElementById("aboutgoa"));
		menu2.addItem("History", "goa-history.htm");
		menu2.addItem("Goa Best Months", "best-time-to-visit-goa.htm");
		menu2.addItem("Location", "location.htm");
		menu2.addItem("Partying in Goa", "partying-goa.htm");
		menu2.addItem("The Local Scene", "local-scene.htm"); 
		
		//==================================================================================================
		// Holidays
		//==================================================================================================

		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 &amp; Spices", "crocodile-dundee.htm");
		submenu1.addItem("Leisure Cruising/Deep Sea Fishing", "deep-sea-fishing-goa.htm");
		submenu1.addItem("Sail Back In Time", "sail-back-in-time.htm");
		submenu1.addItem("Houseboat Backwater Cruise", "houseboat-backwater-cruise.htm");
		submenu1.addItem("Little Tibet and the Jungle", "dandeli-little-tibet.htm");

		//==================================================================================================
		// Events
		//==================================================================================================

		var menu4 = ms.addMenu(document.getElementById("events"));
		menu4.addItem("Conferences &amp; Off-Sites", "conference-and-off-sites.htm");
		menu4.addItem("Fashion Shows", "fashion-shows-goa.htm");
		menu4.addItem("Festivals &amp; Public Events", "festival-public-events-goa.htm");
		menu4.addItem("Infrastructure &amp; Logistics", "infrastructure-logistics.htm");		
		menu4.addItem("Performing Artists","events-artist-management.htm");
		menu4.addItem("Brand Visibility","brand-visibility.htm");
		menu4.addItem("Success Stories","");
	
		var submenu1 = menu4.addMenu(menu4.items[0]);
		submenu1.addItem("Award Ceremonies", "events-award-ceremonies.htm");
		submenu1.addItem("Themed Events", "themed-events.htm");
		submenu1.addItem("Team Building", "team-building.htm");
		submenu1.addItem("Services Summary", "services-summary.htm");
		
		var submenu1 = menu4.addMenu(menu4.items[6]);
		submenu1.addItem("Bacardi", "events-bacardi.htm");
		submenu1.addItem("LVMH", "events-LVMH.htm");
		submenu1.addItem("Mckinsey &amp; Co", "events-Mckinsey.htm");
		submenu1.addItem("Standard Chartered Bank", "events-scb.htm");
		submenu1.addItem("Sunburn Music Festival", "events-sunburn.htm");
		submenu1.addItem("WNS", "events-WNS.htm");

		//==================================================================================================
		// Cruising
		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("cruising"));
		menu5.addItem("Boat Charters", "cruising-boat-charter.htm");
		menu5.addItem("Learning To Sail", "cruising-boat-sales.htm")
		menu5.addItem("Sales & Maintenance", "cruising-boat-maintenance.htm");
		
		//==================================================================================================
		// Weddings
		//==================================================================================================

		var menu6 = ms.addMenu(document.getElementById("weddings"));
		menu6.addItem("Formalities", "wedding-formalities.htm");
		menu6.addItem("Logistics", "wedding-logistics.htm");
		menu6.addItem("Look &amp; Feel", "");
		menu6.addItem("Wedding Lighting", "wedding-lighting.htm");
		menu6.addItem("Wedding Entertainment", "wedding-entertainment.htm");
		menu6.addItem("Wedding Gallery", "wedding-gallery.htm");

		var submenu1 = menu6.addMenu(menu6.items[2]);
		submenu1.addItem("Beach Weddings", "beach-wedding.htm");
		submenu1.addItem("Sangeet &amp; Mehendi", "goa-wedding-sangeet-mehendi.htm");
		submenu1.addItem("Pheras &amp; Reception", "wedding-pheras.htm");
		submenu1.addItem("Off-beat Venue Options", "alternate-venue-options-goa.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();
}
