function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("featureid", "Features", "Features",  null, null);
	menu.addItem("litid", "Literature", "Literature",  null, null);
	menu.addItem("linkid", "Links", "Links",  null, null);
	menu.addItem("oldid", "Old Home Pages", "Previous Home Page Versions",  null, null);
	menu.addItem("guestid", "Guest book", "Guest book",  null, null);

		menu.addSubItem("featureid", "Home", "Home",  "http://www.alvinshubert.com/index.html");
	menu.addSubItem("featureid", "Photos", "Photos",  "http://www.alvinshubert.com/photos.html");
	
	menu.addSubItem("featureid", "Update", "Update",  "http://www.alvinshubert.com/update.html");
	menu.addSubItem("featureid", "Game", "Game",  "http://www.alvinshubert.com/game.html");
	menu.addSubItem("featureid", "Blobs", "Blob Art",  "http://www.alvinshubert.com/blobs.html");
        menu.addSubItem("featureid", "'93 Mustang Radio", "'93 Mustang Radio",  "http://www.alvinshubert.com/ford.html");
	menu.addSubItem("featureid", "E-mail", "E-mail",  "http://www.alvinshubert.com/email.html");

	menu.addSubItem("litid", "Kindergarten", "Kindergarten",  "http://www.alvinshubert.com/kinder.html");
	menu.addSubItem("litid", "A Solution to Rudeness", "A Solution to Rudeness",  "http://www.alvinshubert.com/rude.html");
	menu.addSubItem("litid", "Bush's Sixteen Stone", "Bush's Sixteen Stone",  "http://www.alvinshubert.com/sixteenstone.html");
	menu.addSubItem("litid", "BFL", "BFL",  "http://www.alvinshubert.com/bfl.html");
	menu.addSubItem("litid", "Why Antarctica is. . .", "Why Antarctica is Covered in Ice and Mars has no Water",  "http://www.alvinshubert.com/mars.html");
	menu.addSubItem("litid", "Return of Igor", "Return of Igor",  "http://www.alvinshubert.com/igor.html");
	menu.addSubItem("litid", "Noir Moon", "Noir Moon",  "http://www.alvinshubert.com/moon.html");

	menu.addSubItem("linkid", "Endorsements", "Endorsements",  "http://www.alvinshubert.com/endorse.html");
	
      	menu.addSubItem("linkid", "Missile aimed at us", "Miscellaneus",  "http://www.alvinshubert.com/link.html");
	
	menu.addSubItem("oldid", "Homepage 3.0", "Homepage 3.0",  "http://www.alvinshubert.com/home3.html");
	menu.addSubItem("oldid", "Homepage 4.0", "Homepage 4.0",  "http://www.alvinshubert.com/home4.html");
	menu.addSubItem("oldid", "Homepage 5.0", "Homepage 5.0",  "http://www.alvinshubert.com/home5.html");
	menu.addSubItem("oldid", "Homepage 6.0", "Homepage 6.0",  "http://www.alvinshubert.com/home6.html");

	menu.addSubItem("guestid", "Sign", "Sign",  "http://www.arches.uga.edu/~alvin/guestbook/home.html");
	menu.addSubItem("guestid", "Read", "Read",  "http://www.arches.uga.edu/~alvin/guestbook/guestbook.html");
	

	menu.showMenu();
}