function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "About", "About JeffGermann.com",  null, null);
	menu.addItem("servicesid", "Services", "Web Hosting and E-Commerce Services",  null, null);
	menu.addItem("clientsid", "My Clients", "Sites Hosted by JeffGermann.com",  null, null);
	menu.addItem("communitiesid", "Virtual Communities", "Communities Developed by JeffGermann.com",  null, null);
	menu.addItem("miscid", "Miscellaneous", "My Portfoloio and other information",  null, null);

	menu.addSubItem("webmasterid", "What is JeffGermann.com", "What is JeffGermann.com",  "../about.html");
	menu.addSubItem("webmasterid", "Contact Info", "Contact Information",  "../contact.html");
	menu.addSubItem("webmasterid", "Home Page", "Return to My Home Page",  "../index.html");

	menu.addSubItem("servicesid", "Web Hosting", "As Low As $20 a Month",  "../services1.html");

	menu.addSubItem("clientsid", "Ender Services", "Nationwide Security Monitoring",  "../enderservices/index.html");
	menu.addSubItem("clientsid", "Metropolis Chamber of Commerce", "Metropolis Chamber of Commerce",  "../MetropolisChamber/index.html");
	menu.addSubItem("clientsid", "Pro-Vision Supply", "Your Storehouse For Back-To-Basics Essentials",  "../provisionsupply/index.html");
	menu.addSubItem("clientsid", "Super Museum", "The World Famous Superman Museum in Metropolis IL",  "../SuperMuseum/index.html");

	menu.addSubItem("communitiesid", "SupermanCollectors.com", "Virtual Community for Superman Collectors",  "../supermancollectors/index.html");
	menu.addSubItem("communitiesid", "Living-History.com", "Virtual Community for Historical Re-Enactors",  "../living-History/index.html");
	menu.addSubItem("communitiesid", "ChamberOf.com", "Chambers of Commerce",  "../chamberof/index.html");


	menu.addSubItem("miscid", "My Portfolio", "Personal Artwork and Illustrations",  "../portfolio/index.html");
	menu.addSubItem("miscid", "Private Area", "Private",  "http://www.jeffgermann.com/stores/jeffgerm/admin/");
	menu.showMenu();
}