function showToolbar()
{

	menu = new Menu();
	menu.addItem("lynx", "Lynx", "Lynx",  null, null);
	menu.addItem("battle", "Preparing for battle", "Preparing for battle",  null, null);
	menu.addItem("equip", "Equipment room", "Equipment room",  null, null);
	menu.addItem("offices", "Offices of Lynx", "Offices of Lynx",  null, null);
	menu.addItem("links", "Links", "Links",  null, null);
        menu.addItem("contact", "Contact Lynx", "Contact Lynx",  null, null);

menu.addSubItem("lynx", "Front", "Front", "index.php");
menu.addSubItem("lynx", "News from PCMDR Fox", "News from PCMDR Fox",  "news.html");
menu.addSubItem("lynx", "Current roster", "Lynx roster",  "roster.php");
menu.addSubItem("lynx", "Reporting in", "Reporting in",  "reporting.php");
menu.addSubItem("lynx", "Make your bio / uniform", "Make your uniform / bio",  "uniform.php");
menu.addSubItem("lynx", "", "",  "");

menu.addSubItem("battle", "Lynx JK levels and misc", "Lynx JK levels and Blaster Techs",  "custom.php");
menu.addSubItem("battle", "Read the ancient text The Art of War", "500.000 KB+ TXT! BE WARNED!",  "artofwar.php");
menu.addSubItem("battle", "", "",  "");

menu.addSubItem("equip", "Enter", "Enter",  "equip.php");

menu.addSubItem("offices", "PCMDR Fox", "PCMDR Fox",  "http://www.darksun.dk/lynx/fox/foxoffice.htm");
menu.addSubItem("offices", "PXO Lily", "Lily",  "http://avenger.tcm-services.net/perja");
menu.addSubItem("offices", "", "",  "");

menu.addSubItem("links", "View list", "View list",  "links.htm");
menu.addSubItem("links", "", "",  "");

menu.addSubItem("contact", "Mail PCMDR Fox", "Click to mail",  "mailto:fox@darksun.dk");
menu.addSubItem("contact", "Mail PXO Lily", "Click to mail",  "mailto:perja@imperialorder.net");
menu.addSubItem("contact", "", "",  "");

		menu.showMenu();
}