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

	menu = new Menu();
	menu.addItem("home", "Home", "",  "http://www.pioneerhog.com", null);
	menu.addItem("info", "Information", "Pioneer HOG Chapter information",  null, null);
    menu.addItem("calendar", "Calendar", "",  "http://www.pioneerhog.com/forum/index.php?action=calendar", null);
	menu.addItem("forum", "Discussion Forum", "",  "http://www.pioneerhog.com/forum/", null);
	menu.addItem("contact", "Contact Us", "",  null, null);	
	menu.addItem("pics", "Photos", "",  "http://www.pioneerhog.com/photo.htm", null);
	menu.addItem("links", "Links", "",  "http://www.pioneerhog.com/link.htm", null);

	menu.addSubItem("info", "Meetings", "Meeting Time & Location",  "http://www.pioneerhog.com/meeting.htm", "");
	menu.addSubItem("info", "Chapter Officers", "Who & how to contact them",  "http://www.pioneerhog.com/officer.htm", "");
  	menu.addSubItem("info", "Events", "",  "http://www.pioneerhog.com/events.htm", "");
	menu.addSubItem("info", "Monthly Newsletter", "",  "http://www.pioneerhog.com/newsletter.htm", "");
	menu.addSubItem("info", "Chapter Forms", "",  "http://www.pioneerhog.com/forms.htm", "");
//	menu.addSubItem("info", "Motorcycle Safety", "",  "http://www.pioneerhog.com/UnCon.htm", "");
	
  	menu.addSubItem("contact", "Officers", "",  "http://www.pioneerhog.com/officer.htm", "");
  	menu.addSubItem("contact", "Webmaster", "",  "mailto:webmaster10@pioneerhog.com", "");
//	menu.addSubItem("contact", "I don't know who to contact!", "We will route your info to the correct person",  "mailto:info@pioneerhog.com", "");
//	menu.addSubItem("newsid", "CBS news", "CBS News",  "http://www.pioneerhog.com", "");
	
//	menu.addSubItem("freedownloadid", "Dynamic Drive", "Dynamic Drive",  "http://www.pioneerhog.com/", "");
//	menu.addSubItem("freedownloadid", "Download.com", "Download.com",  "http://www.pioneerhog.com/", "");
//	menu.addSubItem("freedownloadid", "Tucows", "Tucows",  "http://www.pioneerhog.com/", "");

//	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.pioneerhog.com/", "");
//	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.pioneerhog.com/", "");
//	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.pioneerhog.com", "");
//	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.pioneerhog.com", "");

//	menu.addSubItem("miscid", "Cnet", "Cnet",  "http://www.pioneerhog.com/", "");
//	menu.addSubItem("miscid", "RealAudio", "RealAudio",  "http://www.pioneerhog.com/", "");
//	menu.addSubItem("miscid", "MP3.com", "MP3.com",  "http://www.pioneerhog.com/", "");

	menu.showMenu();
}