function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home",  "default.html", "default.html");
	menu.addItem("designid", "Web Site Design", "Design",  "design.html", "design.html");
	menu.addItem("hostingid", "Web Site Hosting", "Hosting",  "hosting.html", "hosting.html");
	menu.addItem("marketingid", "Web Site Marketing", "Marketing",  "marketing.html", "marketing.html");
	menu.addItem("portfolioid", "Portfolio", "Portfolio",  "portfolio.html", "portfolio.html");
	menu.addItem("contactusid", "Contact Us", "Contact Us",  "contact.html", "contact.html");

	menu.showMenu();
}
