// 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("Rock-n-Roll Gourmet", "http://www.rocknrollgourmet.com/"); 

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

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("about"));
			menu2.addItem("THE ROCK-N-ROLL GOURMET STORY","../files/about.php");
			//menu2.addItem("MEDIA","");
			//menu2.addItem("OUR FAMILY","");
			//menu2.addItem("JOIN OUR FAMILY","");
			//menu2.addItem("DISTRIBUTOR INQUIRES","");
			//menu2.addItem("VENDOR INQUIRIES","");
						

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

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("community"));

			menu3.addItem("CONSCIOUSNESS","../files/consciousness.php");
			menu3.addItem("CONTESTS","../files/contests.php");
			menu3.addItem("LINKS","../files/links.php");
			menu3.addItem("PRESS RELEASES","../files/press.php");
			menu3.addItem("IN THE MEDIA","../files/media.php");
			menu3.addItem("MUSIC SHOWCASE","../files/music-showcase.php");
			menu3.addItem("MESSAGE BOARD","../bb/");
			menu3.addItem("GALLERY","../files/gallery.php");
			menu3.addItem("GUESTBOOK","../guestbook/");
			//menu3.addItem("EVENTS CALENDAR","../files/calendar.php");

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

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("products"));
			menu4.addItem("Hippie Chips","../files/products.php#hippie");
			menu4.addItem("Little Wings","../files/products.php#lil");
			menu4.addItem("Sweet Emotions","../files/products.php#sweet");
			menu4.addItem("Rock&amp;Pop","../files/products.php#pop");
			
		var submenu0 = menu4.addMenu(menu4.items[0]);

			submenu0.addItem("Haight-Ashberry Jalapeno", "../files/hippie-chips-jalapeno.php");
			submenu0.addItem("Memphis Blues Barbeque", "../files/hippie-chips-bbq.php");
			submenu0.addItem("Lime is On My Side Cracked Pepper", "../files/hippie-chips-lime.php");
			submenu0.addItem("Sea of Love Salt", "../files/hippie-chips-sea-salt.php");
			submenu0.addItem("White Room Cheddar", "../files/hippie-chips-cheddar.php");
			submenu0.addItem("Woodstock Ranch", "../files/hippie-chips-woodstock.php");
			submenu0.addItem("Chive-Talkin' Sour Cream", "../files/hippie-chips-chive.php");

		var submenu0 = menu4.addMenu(menu4.items[1]);

			submenu0.addItem("Hot Buffalo Wing Chips", "../files/little-wings-bleu-cheese-hot.php");
			submenu0.addItem("Mild Buffalo Wing Chips", "../files/little-wings-bleu-cheese-mild.php");

		var submenu0 = menu4.addMenu(menu4.items[2]);

			submenu0.addItem("Cinnamon Joy", "../files/sweet-emotions-cinnamon.php");
			submenu0.addItem("Chocolate Passion", "../files/sweet-emotions-chocolate.php");

		var submenu0 = menu4.addMenu(menu4.items[3]);

			submenu0.addItem("Jalapeno Korn", "../files/rocknpop-1.php");
			submenu0.addItem("Kettle Korn", "../files/rocknpop-2.php");

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

		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("locator"));
			menu5.addItem("STORE LOCATOR: <br>Retail & Online Outlets","../files/store-locator.php");
			menu5.addItem("STORE LOCATOR: <br>Schools & Universities","../files/store-schools-locator.php");

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

		//==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("shop"));
			menu6.addItem("Purchase products online","../files/products.php");
			
		//==================================================================================================

		//==================================================================================================
		var menu7 = ms.addMenu(document.getElementById("contact"));
			menu7.addItem("CONTACT","../files/contact.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();
	}
