function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu= new Menu();
	
	menu.addItem("welcomeid", "Welcome", "Welcome", null, null);
	menu.addItem("stepsheetsid", "Step Sheets", "Step Sheets", null, null);
	menu.addItem("eventsandclassesid", "Events/Classes", "Events/Classes", null, null);
	menu.addItem("junepartyid", "June Party", "June Party", null, null);
	menu.addItem("linksid", "Links", "Links", null, null);
	menu.addItem("vanvibid", "Vancouver Vibrations", "Vancouver Vibrations", null, null);
	menu.addItem("surveyid","World Line Dance Survey","World Line Dance Survey", null, null);
	menu.addItem("photosid", "Photos", "Photos", null, null);
	menu.addItem("healthid", "Motorcycles", "Motorcycles", null, null);
	menu.addItem("copyrightid", "Copyright", "Copyright", null, null);
	menu.addItem("additemiid", "", "",  "");
	
	menu.addSubItem("welcomeid", "Home Page", "Home Page", "index.html");
	menu.addSubItem("welcomeid", "My Biography", "My Biography", "bio.html");
	menu.addSubItem("welcomeid", "", "",  "");
	
	menu.addSubItem("stepsheetsid", "Line Dance Step Sheets", "Line Dance Step Sheets", "dances.htm");
	menu.addSubItem("stepsheetsid", "More Line D Step Sheets", "More Line D Step Sheets", "otherchoreographers.htm");
	menu.addSubItem("stepsheetsid", "Glossary", "Glossary", "glossary.pdf");
	menu.addSubItem("stepsheetsid", "Health", "Health", "physicalactivity.htm");
	menu.addSubItem("stepsheetsid", "Floor Etiquette", "Floor Etiquette", "floor etiquette1.htm");
	menu.addSubItem("stepsheetsid", "", "", "");

	menu.addSubItem("eventsandclassesid", "Dance Class Schedule", "Dance Class Schedule", "DanceClasses.htm");
	menu.addSubItem("eventsandclassesid", "Portland Festival", "Portland Events", "http://home.comcast.net/~rshotts");
	menu.addSubItem("eventsandclassesid", "", "", "");
	
	menu.addSubItem("junepartyid", "Farewell Party", "Farewell Party", "roundup.htm")
	menu.addSubItem("junepartyid", "", "", "")
	
	menu.addSubItem("linksid", "Line Dance Links", "Line Dance Links", "CountryLinks.htm");
	menu.addSubItem("linksid", "Couples Dance Links", "Couples Dance Links", "VancouverSwingDances.htm");
	menu.addSubItem("linksid", "", "", "");
	
	menu.addSubItem("vanvibid", "Van Vibrations 2008", "Van Vibrations 2008", "08.htm");
	menu.addSubItem("vanvibid", "Directions", "Directions", "directions.htm");
	menu.addSubItem("vanvibid", "Placements 2006", "Placements 2006", "06vanvibplacements.htm");
	menu.addSubItem("vanvibid", "Show Pictures", "Show Pictures", "06dinnershow.htm");	
	menu.addSubItem("vanvibid", "", "", "");
	
	menu.addSubItem("surveyid", "World Line Dance Survey", "World Line Dance Survey", "wwdis.htm");
	menu.addSubItem("surveyid", "WWLD Results", "WWLD results", "wlds.htm");
	menu.addSubItem("surveyid", "", "", "");
	
	menu.addSubItem("photosid", "Winter Photos", "Winter Photos", "winter photos.htm");
	menu.addSubItem("photosid", "Farewell Party 08", "Farewell Party 08", "roundup.htm");
	menu.addSubItem("photosid", "Xmas Party 07", "Xmas Party 07", "07xmaslinedanceparty.htm");
	menu.addSubItem("photosid", "Killarney demo", "Killarney demo", "08killarneydemo.htm");
	menu.addSubItem("photosid", "Class Photos", "Class Photos", "photoalbum.htm");
	menu.addSubItem("photosid", "Spring Ho Down", "Spring Ho Down", "bonsor.htm");
	menu.addSubItem("photosid", "Round Up Party", "Round Up Party", "07roundupparty.htm");
	menu.addSubItem("photosid", "Vancouver, BC Canada", "Vancouver, BC, Canada", "photosvancouverbc.htm");
	menu.addSubItem("photosid", "", "", "");
	
	menu.addSubItem("healthid", "Motorcycles", "Motorcycles", "bikeindex.html");
	menu.addSubItem("healthid", "Motorcycle Links", "Motorcycle Links", "motorcyclelinks.htm");
	menu.addSubItem("healthid", "", "", "");
		
	menu.addSubItem("copyrightid", "Copyright", "Copyright", "Copyright2002.htm");	
	menu.addSubItem("copyrightid", "", "", "");

	menu.showMenu();
}