function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("Nullid", "Menu---->", "Navigate through the site using the drop down menus",  null, null);
	menu.addItem("Genid", "General Info", "News, Club Information",  null, null);
	menu.addItem("Statsid", "Fixtures & Reports", "Leauge Tables, Results, Players Stats",  null, null);
	menu.addItem("Mustid",  "Mustangs", "Leauge Tables, Results, Players Stats",  null, null);
	menu.addItem("Teamsid", "Other Teams", "Juniors and Ladies Teams Information",  null, null);
	menu.addItem("Interid", "Interactive", "Guestbook, Forum, Chatroom and downloads",  null, null);
	menu.addItem("Miscid", "Miscellaneous ", "All of the other bits n bobs",  null, null);

	menu.addSubItem("Genid", "Dynamos Home", "Return to the Front Page",  "http://www.invictadynamos.co.uk/main_frame.htm");
	menu.addSubItem("Genid", "News", "Club and General News",  "http://www.invictadynamos.co.uk/php/news.php");
	menu.addSubItem("Genid", "Contact Information", "Whos Who",  "http://www.invictadynamos.co.uk/about.htm");
	menu.addSubItem("Genid", "Game Day", "Tickets, Directions & Season Tickets",  "http://www.invictadynamos.co.uk/gameday.htm");
	menu.addSubItem("Genid", "Archives", "A History of years gone by",  "http://www.invictadynamos.co.uk/archive");
	menu.addSubItem("Genid", "Player Applications", "Would you like to be a part of Dynamos Squad",  "http://www.invictadynamos.co.uk/applications.htm");

	menu.addSubItem("Statsid", "Fixtures", "Results, Fixtures and Match reports",  "http://www.invictadynamos.co.uk/php/fixtures.php?cmp=all&vnu=all");
	menu.addSubItem("Statsid", "League Tables", "EPL League Tables",  "http://www.invictadynamos.co.uk/php/tables.php");
	menu.addSubItem("Statsid", "Players Stats", null,  "http://www.invictadynamos.co.uk/php/stats.php");
	menu.addSubItem("Statsid", "Team Roster", null,  "http://www.invictadynamos.co.uk/roster.htm");

	menu.addSubItem("Mustid", "Mustangs Home", "About the Mustangs",  "http://www.invictadynamos.co.uk/php/mustangs/index.php?id=7");
	menu.addSubItem("Mustid", "Fixtures", "Results, Fixtures and Match reports",  "http://www.invictadynamos.co.uk/php/mustangs/fixtures.php?id=7");
	menu.addSubItem("Mustid", "League Tables", "ENL Div2 League Table",  "http://www.invictadynamos.co.uk/php/mustangs/table.php?id=7");
	menu.addSubItem("Mustid", "Roster", null,  "http://www.invictadynamos.co.uk/php/mustangs/roster.php?id=7");

	menu.addSubItem("Teamsid", "Junior Development Programme", "Helping to find and develop the Dynamos of the future",  "http://www.invictadynamos.co.uk/php/juniors");
	menu.addSubItem("Teamsid", "Invicta Imps (u10's)", "Invicta's youngest from 5 to 9 years old",  "http://www.invictadynamos.co.uk/php/juniors/teams.php?id=2");
	menu.addSubItem("Teamsid", "Invicta Devils (u12's)", "",  "http://www.invictadynamos.co.uk/php/juniors/teams.php?id=3");
	menu.addSubItem("Teamsid", "Invicta Dynamites (u14's)", "",  "http://www.invictadynamos.co.uk/php/juniors/teams.php?id=4");
	menu.addSubItem("Teamsid", "Invicta Junior Dynamos (u16's)", "",  "http://www.invictadynamos.co.uk/php/juniors/teams.php?id=6");
	menu.addSubItem("Teamsid", "Invicta Dynamics (Ladies)", "",  "http://www.invictadynamos.co.uk/ladies");

	menu.addSubItem("Interid", "Forum", "Exchange news and views with other supportters",  "http://www.invictadynamos.co.uk/forums/bbx/");

	menu.addSubItem("Miscid", "Links", "Links to other Hockey Websites",  "http://www.invictadynamos.co.uk/php/links.php");

	menu.showMenu();
}