//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "Home", "Home",  "index.htm");
	menu.addItem("newsid", "Photo Gallery", "Photo Gallery",  null, null);
	menu.addItem("freedownloadid", "Map", "Map",  "map.htm");
	menu.addItem("searchengineid", "Fact-File", "Fact-File",  "factfile.htm");
	menu.addItem("miscid", "Guestbook", "Guestbook",  "http://pub47.bravenet.com/guestbook/show.php?usernum=3992986059&cpv=1");
	menu.addItem("downloadsid", "Downloads", "Downloads",  null, null);
	menu.addItem("listid", "News", "News",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);
	menu.addItem("emailid", "E-Mail Me", "E-Mail Me",  "mailto:naynay@cbfmail.com");

	menu.addSubItem("newsid", "Landscapes", "Landscapes",  "landscapes.htm");
	menu.addSubItem("newsid", "Animals", "Animals",  "animals.htm");
	menu.addSubItem("newsid", "Underwater", "Underwater",  "underwater.htm");
	menu.addSubItem("newsid", "Other", "Other",  "other.htm");
	menu.addSubItem("newsid", "Personal", "Personal",  "personal.htm");
	
	menu.addSubItem("downloadsid", "Gozo Scenes Screen Saver", "Gozo Scenes Screen Saver",  "gozoscenes.exe");
	
	menu.addSubItem("listid", "Issue 1 Volume 2", "Issue 1 Volume 2",  "news.htm");
	menu.addSubItem("listid", "Issue 2 Volume 2", "Issue 2 Volume 2",  "news2.htm");

	menu.addSubItem("linksid", "Gozo.com", "Gozo.com",  "http://www.gozo.com/");
	menu.addSubItem("linksid", "GozoCreations.com", "GozoCreations.com",  "http://www.gozocreations.com/");
	menu.addSubItem("linksid", "Gozo Glass", "Gozo Glass",  "http://www.gozoglass.com/");
	menu.addSubItem("linksid", "Kinnie", "Kinnie",  "http://www.kinnie.com/");
	menu.addSubItem("linksid", "St. Andrews Divers Cove", "St. Andrews Divers Cove",  "http://www.gozodive.com/");
	menu.addSubItem("linksid", "AEL Car Rentals", "AEL Car Rentals",  "http://www.aelgozo.com/");
	menu.addSubItem("linksid", "Guide Gozo.com", "Guide Gozo.com",  "http://www.guidegozo.com/");
	menu.addSubItem("linksid", "Xlendi.com", "Xlendi.com",  "http://www.xlendi.com/");

	menu.showMenu();
}