function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("fcsid", "FAKK Corps Sintral", "FAKK Corps Sintral",  null, null);
	menu.addItem("playersid", "The Players", "The Players",  null, null);
	menu.addItem("eventsid", "Events", "Events",  null, null);

	menu.addSubItem("fcsid", "Main Page", "Main Page",  "index.html")
	menu.addSubItem("fcsid", "Contact Us", "Contact Us",  "contact.htm");

	menu.addSubItem("playersid", "FAKK Corps", "FAKK Corps",  "fakkcorps1.htm");
        menu.addSubItem("playersid", "SiN Corps A-M", "SiN Corps A-M", "sincorps.htm");
	menu.addSubItem("playersid", "SiN Corps N-Z", "SiN Corps N-Z",  "sincorps2.htm");
	menu.addSubItem("playersid", "Mercenaries", "Mercenaries",  "mercs.htm");
	menu.addSubItem("playersid", "Register", "Register",  "register.htm");
	menu.addSubItem("playersid", "How To", "How To",  "how1.htm");

	menu.addSubItem("eventsid", "Tournaments", "Tournaments",  "tourneys.htm");
        menu.addSubItem("eventsid", "Sindays", "Sindays", "sinday.htm");
        menu.addSubItem("eventsid", "Wars", "Wars", "wars.htm");
	menu.addSubItem("eventsid", "Submit", "Submit",  "submit.htm");
	menu.addSubItem("eventsid", "How To", "How To",  "how2.htm");

	menu.showMenu();
}
