//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 Page",  null, null);
	menu.addItem("aboutid", "About", "About",  null, null);
	menu.addItem("rateid", "Tour Facts", "Rates & Geography",  null, null);
	menu.addItem("photoid", "Photo Gallery", "Photos",  null, null);
	menu.addItem("contactid", "Contact Us", "Contact Us",  null, null);
	menu.addItem("linkid", "Links", "Links",  null, null);

	menu.addSubItem("homeid", "Home Page", "Florida Airboat Tours, Inc. Home",  "index.htm", "");


	menu.addSubItem("aboutid", "About Us", "About Florida Airboat Tours, Inc.",  "about.htm", "");
	menu.addSubItem("aboutid", "Directions", "Directions",  "directions.htm", "");


	menu.addSubItem("rateid", "Our Rates", "Our Rate Structure",  "rates.htm", "");
	menu.addSubItem("rateid", "Tour Geography", "The Tour Area",  "geography.htm", "");


	menu.addSubItem("photoid", "Everglades Photos", "Everglades Photos",  "photos.htm", "");


	menu.addSubItem("contactid", "Contact Us", "Contact Florida Airboat Tours, Inc.",  "contact.htm", "");
	menu.addSubItem("contactid", "Book A Tour", "Book Your Charter",  "charter.htm", "");

	menu.addSubItem("linkid", "Assorted Links", "Everglades Related Links",  "links.htm", "");

	menu.showMenu();
}