	// 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 (mtDropDown.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 mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.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("menu1"));
		menu1.addItem("The Clarion Experience ", "http://www.clariongolf.com/site/clarion.asp");
		menu1.addItem("Key Personnel", "http://www.clariongolf.com/site/personel.asp");
		menu1.addItem("Planning an Event", "http://www.clariongolf.com/site/planning.asp");
		menu1.addItem("Recommended Venues", "http://www.clariongolf.com/site/venues.asp");
		menu1.addItem("Event Equipment", "http://www.clariongolf.com/site/equipment.asp");   
		menu1.addItem("Event Websites", "http://www.clariongolf.com/site/websites.asp");   
		menu1.addItem("Request a Budget", "http://www.clariongolf.com/site/your_day.asp");   
		menu1.addItem("Schedule of Charges ", "http://www.clariongolf.com/site/charges.asp");   



		
		//==================================================================================================

		//==================================================================================================
		// add a sub-menu
		//==================================================================================================
		// 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[4])
		//==================================================================================================


    
        var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Merchandise Range","http://www.clariongolf.com/site/merch_home.asp");
		menu2.addItem("Get a Quote", "http://www.clariongolf.com/site/get_quote.asp");		
		menu2.addItem("Request a Brochure", "http://www.clariongolf.com/site/brochure.asp");		
		menu2.addItem("Pricewatch", "http://www.clariongolf.com/site/pricewatch.asp");
		menu2.addItem("Artwork Requirements", "http://www.clariongolf.com/site/artwork.asp");		
		menu2.addItem("Terms & Conditions", "http://www.clariongolf.com/site/terms.asp");		


		
	var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Corporate Golf in the Sun","http://www.clariongolf.com/site/europe.asp");
		menu3.addItem("Booking Service","http://www.clariongolf.com/site/booking.asp");
		menu3.addItem("Event Management","http://www.clariongolf.com/site/management.asp");
		menu3.addItem("Recommended Venues", "http://www.clariongolf.com/site/eurovenues.asp");
		menu3.addItem("Request a Budget", "http://www.clariongolf.com/site/euroyour_day.asp");
		menu3.addItem("Sample Itinerary","http://www.clariongolf.com/site/euroitin.asp");

	
	
	
		

		//==================================================================================================
		// 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.
		//==================================================================================================
		mtDropDown.renderAll();
	}
