function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "Home", "Home",  null, null);
	menu.addItem("newsid", "Dogs", "Dogs",  null, null);
	menu.addItem("freedownloadid", "Cats", "Cats",  null, null);
	menu.addItem("searchengineid", "Birds", "Birds",  null, null);
	menu.addItem("miscid", "Reptiles", "Reptiles",  null, null);
	menu.addItem("misnew", "Exotics", "Exotics",  null, null);
	menu.addItem("misnew2", "Barnyard", "Barnyard",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home",  "index.html");
	menu.addSubItem("webmasterid", "Contact", "Contact",  "contact.html");
	
	menu.addSubItem("newsid", "Small", "Small",  "dogsmall.html");
	menu.addSubItem("newsid", "Medium", "Medium",  "dogsmed.html");
	menu.addSubItem("newsid", "Large", "Large",  "dogslrg.html");
	
	menu.addSubItem("freedownloadid", "Production Room - Check Back!", "Production Room - Check Back!",  "cats.html");
	menu.addSubItem("freedownloadid", "Shorthair", "Shorthair",  "cats.html");
	menu.addSubItem("freedownloadid", "Longhair", "Longhair",  "cats.html");
      menu.addSubItem("freedownloadid", "Kittens", "Kittens",  "cats.html");
	
	menu.addSubItem("searchengineid", "Cutting Room - Check Back!", "Cutting Room - Check Back!",  "/birds/birds.html");
	menu.addSubItem("searchengineid", "All", "All",  "/birds/birds.html");
	
	menu.addSubItem("miscid", "Director's Office - Check Back!", "Director's Office - Check Back!",  "reptiles.html");
	menu.addSubItem("miscid", "All", "All",  "reptiles.html");

	menu.addSubItem("misnew", "Cutting Room - Oh, Check Back!", "Cutting Room - Oh, Check Back!",  "/exotics/exotics.html");
	menu.addSubItem("misnew", "Tigers, etc.", "Tigers, etc.",  "/exotics/exotics.html");
	
	menu.addSubItem("misnew2", "Oink! - Please Check Back!", "Oink! - Please Check Back!",  "barn.html");
	menu.addSubItem("misnew2", "Pigs, etc.", "Pigs, etc.",  "barn.html");
	
	menu.showMenu();
}
