

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("Home", "Home", "Home",  "index2.html");
	menu.addItem("About", "About Us", "About Us",  "About.html");
	menu.addItem("Great Lakes", "Great Lakes", "Great Lakes",  "GreatLakes.html");
	menu.addItem("Otherlights", "Other Lights", "Other Lights",  "OtherLights.html");
	menu.addItem("Othersites", "Other Sites", "Other Sites",  "Links.html");
menu.addItem("Tours", "Tours", "Tours",  "Tours.html");
              menu.addItem("NewsInfo", "News Info", "News Info",  "Whatsnew.html");
menu.addItem("Feedback", "Feedback", "Feedback",  "http://pub6.bravenet.com/guestbook/show.php?usernum=443847820&cpv=1.break");
menu.addItem("Contact", "Contact", "Contact",  "Contact.html");
             

	


	menu.showMenu();
}