//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("lewssite", "Lew's Site", "Lew's Site", null, null);
	menu.addItem("Trivia Quiz 1", "Trivia Quiz 1", "Trivia Quiz 1",  "http://www.lewzworld.com/simpsons/trivia/trivia1.html", null);
	menu.addItem("2", "Trivia Quiz 2", "2",  "http://www.lewzworld.com/simpsons/trivia/trivia2.html", null);
	menu.addItem("3", "Trivia Quiz 3", "3",  "http://www.lewzworld.com/simpsons/trivia/trivia3.html", null);


	menu.addSubItem("lewssite", "Home", "Home",  "http://www.lewzworld.com/simpsons/", "");
	menu.addSubItem("lewssite", "Lurleen Lumpkin", "Lurleen Lumpkin",  "http://www.lewzworld.com/simpsons/lurleen.html", "");
	menu.addSubItem("lewssite", "PinPals", "PinPals",  "http://www.lewzworld.com/simpsons/pinpals.html", "");
	menu.addSubItem("lewssite", "Secret Love of Skinner & Krabappel", "Secret Love of Skinner & Krabappel",  "http://www.lewzworld.com/simpsons/skinner.html", "");
	menu.addSubItem("lewssite", "Links", "Links",  "http://www.lewzworld.com/simpsons/links.html", "");
    menu.addSubItem("lewssite", "&nbsp", "&nbsp",  "", "");


	menu.showMenu();
}