function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("Homeid", "Home", "Home",  null, null);
	menu.addItem("Childid", "Kid Pages", "Kids",  null, null);
	menu.addItem("Teacherid", "Teachers", "Teachers",  null, null);
	menu.addItem("Parentid", "Parents", "Parents",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("Homeid", "Home Page", "Bunny Munchkin",  "http://www.bunnymunchkin.com/");
	menu.addSubItem("Homeid", "About Us", "About Us", "http://www.bunnymunchkin.com/aboutus.html");
	menu.addSubItem("Homeid", "Email Us", "Email Us", "mailto:bree@webbildr.com");

	menu.addSubItem("Childid", "Books", "Books",  "http://www.bunnymunchkin.com/books.html");
	menu.addSubItem("Childid", "Artwork", "Artwork by You!",  "http://www.bunnymunchkin.com/artwork.html");
	menu.addSubItem("Childid", "CDs, DVDs, & Stuff", "Music, Videos, DVD",  "http://www.bunnymunchkin.com/music.html");
	menu.addSubItem("Childid", "Play", "Fun Stuff",  "http://www.bunnymunchkin.com/toys.html");
	menu.addSubItem("Childid", "Surf", "Surf these sites", "http://www.bunnymunchkin.com/surf.html");

	menu.addSubItem("Teacherid", "Lesson Plans", "Lesson Plans",  "http://www.bunnymunchkin.com/lessons.html");
	menu.addSubItem("Teacherid", "Literature", "Literature",  "http://www.bunnymunchkin.com/literature.html");
      menu.addSubItem("Teacherid", "Technology", "Computers, Electronic Devices, etc.",  "http://www.bunnymunchkin.com/tech.html");
	menu.addSubItem("Teacherid", "Teacher Links", "Your List of Great Sites", "http://www.bunnymunchkin.com/teacherlinks.html");

	menu.addSubItem("Parentid", "Child Development", "Child Development",  "http://www.bunnymunchkin.com/development.html");
	menu.addSubItem("Parentid", "The Library", "The Library",  "http://www.bunnymunchkin.com/library.html");
	menu.addSubItem("Parentid", "The Family Room", "The Family Room", "http://www.bunnymunchkin.com/familyroom.html");
	menu.addSubItem("Parentid", "Getaway Planner", "Plan a Vacation",  "http://www.bunnymunchkin.com/vacation.html");
	menu.addSubItem("Parentid", "Parent Links", "Savvy Surfing", "http://www.bunnymunchkin.com/parentlinks.html");
	
	menu.addSubItem("miscid", "White House", "The White House",  "http://www.whitehouse.gov/");
	menu.addSubItem("miscid", "MSNBC News", "MSNBC News",  "http://www.msnbc.com/");
	menu.addSubItem("miscid", "CBS News", "CBS News",  "http://www.cbs.com/");
	menu.addSubItem("miscid", "AssociatedPress", "AssociatedPress",  "http://wire.ap.org/GoToAP.cgi");
	menu.addSubItem("miscid", "PBS", "Public TV",  "http://www.pbs.org/");
	menu.addSubItem("miscid", "Dictionary", "Find what it means",  "http://www.dictionary.com/");
	menu.addSubItem("miscid", "Encyclopedia", "Encyclopedia",  "http://www.encyclopedia.com/");
	menu.addSubItem("miscid", "LightSpan", "LightSpan", "http://www.lightspan.com/");
	menu.addSubItem("miscid", "AskJeevesForKids", "AskJeevesForKids",  "http://www.askjeevesforkids.com/")
	

	menu.showMenu();
}
