function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("home", "Home", "Home", "http://www.jabin.com/index.html", null);
	menu.addItem("kids", "Katie & Tommy Pictures", "Katie & Tommy Pictures",  null, null);
	menu.addItem("technology", "Technology Stuff", "Technology Stuff",  null, null);
	menu.addItem("funhouse", "The FunHouse", "The FunHouse",  null, null);
	menu.addItem("movies", "Movies", "Movies",  null, null);
	menu.addItem("jabin", "About Jabin", "About Jabin",  null, null);
	menu.addItem("pools", "Pools, Fantasy Leagues", "Pools, Fantasy Leagues", null, null);

	menu.addSubItem("kids", "Most Recent Pictures", "Most Recent Pictures",  "http://www.jabin.com/recent.html");
    menu.addSubItem("kids", "2007 Pictures", "2007 Pictures",  "http://www.jabin.com/2007.html");
    menu.addSubItem("kids", "2006 Pictures", "2006 Pictures",  "http://www.jabin.com/2006.html");
    menu.addSubItem("kids", "2005 Pictures", "2005 Pictures",  "http://www.jabin.com/2005.html");
	menu.addSubItem("kids", "2004 Pictures", "2004 Pictures",  "http://www.jabin.com/2004.html");
	menu.addSubItem("kids", "2003 Pictures", "2003 Pictures",  "http://www.jabin.com/2003.html");
	menu.addSubItem("kids", "2002 Pictures", "2002 Pictures",  "http://www.jabin.com/2002.html");
	menu.addSubItem("kids", "2001 Pictures", "2001 Pictures",  "http://www.jabin.com/2001.html");
	
	menu.addSubItem("technology", "XML/SGML Info", "XML/SGML Info",  "http://www.jabin.com/xml.html");
	menu.addSubItem("technology", "Sites I've Designed", "Sites I've Designed",  "http://www.jabin.com/mysites.html");
	menu.addSubItem("technology", "Stupid HTML Tricks", "Stupid HTML Tricks",  "http://www.jabin.com/tricks.html");
	menu.addSubItem("technology", "Helpful Tech Sites", "Helpful Tech Sites",  "http://www.jabin.com/helpful.html");

	menu.addSubItem("funhouse", "Funny Emails", "Funny Emails",  "http://www.jabin.com/emails.html");
	menu.addSubItem("funhouse", "Funny Web Sites", "Funny Web Sites",  "http://www.jabin.com/funnysites.html");
      	menu.addSubItem("funhouse", "My Seinfeld Page", "My Seinfeld Page",  "http://www.jabin.com/seinfeld.html");
	menu.addSubItem("funhouse", "Games", "Games",  "http://www.jabin.com/games.html");
      	menu.addSubItem("funhouse", "Subscribe to the Joke List", "Subscribe to the Joke List", "http://www.jabin.com/jokelist.html");

	menu.addSubItem("movies", "My Favorite Comedies", "My Favorite Comedies",  "http://www.jabin.com/comedies.html");
	menu.addSubItem("movies", "My Favorite Dramas", "My Favorite Dramas",  "http://www.jabin.com/dramas.html");
	menu.addSubItem("movies", "Take a Movie Quiz", "Take a Movie Quiz", "http://www.jabin.com/quiz.html");
	menu.addSubItem("movies", "Movie Links", "Movie Links",  "http://www.jabin.com/movielinks.html");

	menu.addSubItem("jabin", "About Jabin", "About Jabin",  "http://www.jabin.com/about.html");
	menu.addSubItem("jabin", "My Resume", "My Resume",  "http://www.jabin.com/resume.htm");
	menu.addSubItem("jabin", "Jabin's Red Sox Blog", "Jabin's Red Sox Blog",  "http://www.jabin.com/jwblog.html");
	menu.addSubItem("jabin", "Presentations and Papers", "Presentations and Papers", "http://www.jabin.com/presentations.html");
	menu.addSubItem("jabin", "Odds n' Ends", "Odds n' Ends",  "http://www.jabin.com/odds.html");
	menu.addSubItem("jabin", "Favorite Things", "Favorite Things",  "http://www.jabin.com/favorites.html");

	menu.addSubItem("pools", "Jabin's March Madness Pool", "Jabin's March Madness Pool",  "http://www.jabin.com/hoops/");
	menu.addSubItem("pools", "TAC's Office Pool", "TAC's Office Pool",  "http://www.jabin.com/tac/nfl");
menu.showMenu();
}