//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("homeid", "HOME", "HOME",  null, null);
	menu.addItem("mazeid", "Corn Maze", "Corn Maze",  null, null);
	menu.addItem("barnid", "Barnyard", "Barnyard",  null, null);
	menu.addItem("laserid", "Laser Tag", "Laser Tag",  null, null);
	menu.addItem("hauntid", "Dead North", "Our unique haunted event that occurs in early October",  null, null);
	menu.addItem("infoid", "Information", "Directions to us, Contact Us, Group Info, Other Links and Area Events",  null, null);
	
	menu.addSubItem("homeid", "HOME", "HOME",  "http://www.vermontcornmaze.com/homepage.html", "");

	menu.addSubItem("mazeid", "Corn Maze", "Corn Maze",  "http://www.vermontcornmaze.com/cornmaze.html", "");
	menu.addSubItem("mazeid", "Admission & Dates", "Admission & Dates",  "http://www.vermontcornmaze.com/admission2009.html", "");
	menu.addSubItem("mazeid", "Experience the Maze", "Experienc the Maze",  "http://www.vermontcornmaze.com/EXPERIEINCEMAZE.html", "");
	menu.addSubItem("mazeid", "Maze Pictures", "Maze Pictures",  "http://www.vermontcornmaze.com/pictures2.html", "");
	menu.addSubItem("mazeid", "STARLIGHT Maze", "STARLIGHT",  "http://www.vermontcornmaze.com/moonlight_maze.html", "");
	menu.addSubItem("mazeid", "FAQ's", "FAQ's",  "http://www.vermontcornmaze.com/FAQ.html", "");
	menu.addSubItem("mazeid", "Schools & Groups", "Schools & Groups",  "http://www.vermontcornmaze.com/groups_and_schools.html", "");
			

	menu.addSubItem("barnid", "Barnyard Nature Center", "Barnyard Nature Center",  "http://www.vermontcornmaze.com/science_center.html", "");
	menu.addSubItem("barnid", "Barnyard Golf", "Barnyard Golf",  "http://www.vermontcornmaze.com/mini-golf.html", "");
	menu.addSubItem("barnid", "Miney's Maze", "Miney's Maze",  "http://www.vermontcornmaze.com/mineysmaze.html", "");
					
	menu.addSubItem("laserid", "Laser Tag", "Laser Tag",  "http://www.vermontcornmaze.com/lasertag.html", "");	

	menu.addSubItem("hauntid", "DEAD NORTH", "DEAD NORTH - Farmland of Terror",  "http://www.vermontcornmaze.com/HAUNTED.html", "");
	
	menu.addSubItem("infoid", "Directions", "Directions",  "http://www.vermontcornmaze.com/directions.html", "");
	menu.addSubItem("infoid", "Stay & Play", "Stay & Play",  "http://www.vermontcornmaze.com/stay.html", "");
	menu.addSubItem("infoid", "VT Made", "VT Made",  "http://www.vermontcornmaze.com/vtmade.html", "");
	menu.addSubItem("infoid", "Schools & Groups", "Schools & Groups",  "http://www.vermontcornmaze.com/groups_and_schools.html", "");
	menu.addSubItem("infoid", "Area Events", "Area Events",  "http://www.vermontcornmaze.com/AreaEvents.html", "");
	menu.addSubItem("infoid", "Contact Us", "Contact Us",  "http://www.vermontcornmaze.com/contact_us.html", "");
	
	menu.showMenu();
}