function showToolbar()
	{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget); // if linktarget supplied, link will open in a new window

	menu = new Menu();
	menu.addItem("internalid", "Site Links", "Site Links",  null, null);
	menu.addItem("externalid", "Scouting Sites", "Scouting Sites",  null, null);
	menu.addItem("emailid", "E-mailing", "E-mailing",  null, null);
	menu.addItem("miscid", "Interesting Sites", "Current Interests",  null, null);
	menu.addItem("searchengineid", "Searching", "Searching",  null, null);

	menu.addSubItem("internalid", "Home", "Pack 19 Home Page",  "http://mysite.verizon.net/pack19/index.html");
	menu.addSubItem("internalid", "About Our Pack", "About Our Pack",  "http://mysite.verizon.net/pack19/P19_Aboutpage.htm");
	menu.addSubItem("internalid", "Past Events", "Past Events",  "http://mysite.verizon.net/pack19/P19_Pasteventspage.htm");
	menu.addSubItem("internalid", "Leader Meetings", "Leader Meeting minutes",  "http://mysite.verizon.net/pack19/P19_LeaderMM.htm");
	menu.addSubItem("internalid", "Pack 19 Pinewood Derby 2006 Standings", "http://mysite.verizon.net/pack19/P19_PWD2006Standings.htm", "http://mysite.verizon.net/pack19//P19_PWD2006Standings.htm");
	menu.addSubItem("internalid", "Tiger Page", "Pack 19 Tiger Page",  "http://mysite.verizon.net/pack19/P19_Tigerpage.htm");
	menu.addSubItem("internalid", "Wolf Page", "Pack 19 Wolf Page",  "http://mysite.verizon.net/pack19/P19_Wolfpage.htm");
	menu.addSubItem("internalid", "Bear Page", "Pack 19 Bear Page",  "http://mysite.verizon.net/pack19/P19_Bearpage.htm");
	menu.addSubItem("internalid", "Webelos Page", "Pack 19 Webelo Page",  "http://mysite.verizon.net/pack19/P19_Webelos_page.htm");

	menu.addSubItem("externalid", "Bucks County BSA", "Bucks County BSA",  "http://www.buckscountybsa.org", "http://www.buckscountybsa.org");
	menu.addSubItem("externalid", "Plawicki District", "Plawicki District Home Page",  "http://www.buckscountybsa.org/playwicki/", "http://www.buckscountybsa.org/playwicki/");
	menu.addSubItem("externalid", "Camp Ockanickon", "Camp Ockanickon", "http://www.ockanickon.org", "http://www.ockanickon.org");
	menu.addSubItem("externalid", "Camp Kirby", "Camp Kirby", "http://www.ockanickon.org/cubscouts", "http://www.ockanickon.org/cubscouts");

	menu.addSubItem("emailid", "Email the Pack", "Email the Pack",  "mailto:Pack19@verizon.net");

	menu.addSubItem("miscid", "Froguts!", "Welcome to Froguts! - Virtual Dissection Software", "http://www.froguts.com/", "http://www.froguts.com/");
	menu.addSubItem("miscid", "GRIN", "Greatest Images of Nasa", "http://grin.hq.nasa.gov/", "http://grin.hq.nasa.gov/");
	menu.addSubItem("miscid", "Molecular Expressions", "Molecular Expressions: Images from the Microscope", "http://molecularexpressions.com/", "http://molecularexpressions.com/");
	menu.addSubItem("miscid", "Education Place", "Education Place", "http://eduplace.com/", "http://eduplace.com/");
	menu.addSubItem("miscid", "How Stuff Works", "How Stuff Works", "http://www.howstuffworks.com/", "http://www.howstuffworks.com/");
	menu.addSubItem("miscid", "Astronomy Picture of the Day", "Astronomy Picture of the Day", "http://antwrp.gsfc.nasa.gov/apod/astropix.html", "http://antwrp.gsfc.nasa.gov/apod/astropix.html");

	menu.addSubItem("searchengineid", "Google", "Google search engine",  "http://www.google.com", "http://www.google.com");
	menu.addSubItem("searchengineid", "Yahoo", "Yahoo search engine",  "http://www.yahoo.com/", "http://www.yahoo.com/");
	menu.addSubItem("searchengineid", "Infoseek", "Infoseek search engine",  "http://www.infoseek.com/", "http://www.infoseek.com/");
	menu.addSubItem("searchengineid", "MapQuest", "Get Directions starting from our Home",  "http://www.mapquest.com/maps/map.adp?city=Langhorne&state=PA&address=400+S+Bellevue+ave+&zip=19047&country=us&zoom=8", "http://www.mapquest.com/");

	menu.showMenu();
	}