// 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, 1, 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("home"));
			menu1.addItem("home", "../files_2/index.php"); 

		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("menu"));
			menu2.addItem("Menu","../files_2/menu.php");
			menu2.addItem("Nutrition and Wellness","../files_2/nutrition-and-wellness.php");
			menu2.addItem("Take-N-Bake Instructions","../files_2/take-n-bake.php");

		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("locations"));
			menu3.addItem("Locations","../locator/index_new-template.php");
			
		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("franchising"));
			menu4.addItem("Franchise Video","../files_2/franchising.php");
			menu4.addItem("Franchise Owner Testimonials","../files_2/franchising_benefits.php");
			menu4.addItem("Our Team","../files_2/franchising_team.php");
			menu4.addItem("The Investment","../files_2/franchising_investment.php");
			menu4.addItem("Levels of Investment","../files_2/franchising_investment_levels.php");
			menu4.addItem("International Master Franchises","../files_2/franchising_international_master_franchises.php");
			menu4.addItem("Area Developer Opportunities","../files_2/franchising_area_devloper.php");
			menu4.addItem("Hot Financing Deal","../files_2/franchising_current_financing.php");
			menu4.addItem("Our Advantages","../files_2/franchising_our_advantages.php");
			menu4.addItem("Markets Available","../files_2/franchising_markets_available.php");
			menu4.addItem("Opening Support","../files_2/franchising_support.php");
			menu4.addItem("Steps to Ownership","../files_2/franchising_steps-to-ownership.php");
			menu4.addItem("Join Now - Request More Info","../files_2/franchising_questionnaire.php");
			

		//==================================================================================================

		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("media"));
			menu5.addItem("Media Releases","../files_2/media.php");
			menu5.addItem("In the Media","../files_2/in-the-media.php");
			menu5.addItem("Social Media","../files_2/social-media.php");
			
		//==================================================================================================

		//==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("fundraising"));
			menu6.addItem("Fundraising", "../files_2/fundraising.php");
			
		//==================================================================================================

		//==================================================================================================
		var menu7 = ms.addMenu(document.getElementById("contactus"));
			menu7.addItem("Contact A Store", "../files_2/contact.php");
			menu7.addItem("Customer Care", "../files_2/contact-customer-care.php");
			menu7.addItem("Franchising: Request More Info", "../files_2/contact-franchise-opportunities.php");
			menu7.addItem("Real Estate: Submit A Site", "../files_2/contact-real-estate.php");
			menu7.addItem("Corporate Employment Opportunities", "../files_2/contact-corporate-employment-opportunities.php");


		//==================================================================================================

		//==================================================================================================
		// 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();
	}
