function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "About Euro 25", "About Euro 25",  null, null);
	menu.addItem("newsid", "For Fans", "For Fans",  null, null);
	menu.addItem("freedownloadid", "For Ballot Holders", "For Ballot Holders",  null, null);
	menu.addItem("searchengineid", "Other Services", "More services !",  null, null);
	menu.addItem("miscid", "Football Network", "Our partner sites",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home",  "index.html");
	menu.addSubItem("webmasterid", "Intention", "Intention",  "euro25int.html");
	menu.addSubItem("webmasterid", "Organizing Committee", "Organizing Committee",  "euro25oc.html");
	menu.addSubItem("webmasterid", "Ballot holders", "Ballot holders",  "euro25bhs.html");
	menu.addSubItem("webmasterid", "Voting process", "Voting process",  "euro25vps.html");

	menu.addSubItem("newsid", "Press releases", "Press releases",  "euro25pr.html");
	menu.addSubItem("newsid", "Season-by-team", "Season-by-team",  "euro25sbt.html");
	menu.addSubItem("newsid", "Discuss Rankings", "Discuss Rankings",  "http://pub3.ezboard.com/feuroforumrankings");
	menu.addSubItem("newsid", "Archives", "Archives",  "euro25archives.html");
	menu.addSubItem("newsid", "Feedback", "Feedback",  "euro25feedback.html");

	menu.addSubItem("freedownloadid", "Voting guidelines", "Voting guidelines",  "euro25vguide.html");
	menu.addSubItem("freedownloadid", "Schedule", "Schedule",  "euro25sched.html");
      menu.addSubItem("freedownloadid", "The Clock Page", "The Clock Page",  "euro25clock.html");
	menu.addSubItem("freedownloadid", "Contact List", "Contact List",  "euro25clist.html");
      menu.addSubItem("freedownloadid", "E-mail OC", "E-mail OC",  "mailto:Euro25oc@tnfj.com");
      menu.addSubItem("freedownloadid", "Enter voting booth", "Enter voting booth",  "http://pub3.ezboard.com/beuroforum2");
      menu.addSubItem("freedownloadid", "Code of ethics", "Code of ethics",  "euro25code.html");

	menu.addSubItem("searchengineid", "News", "TNFJ News",  "../News/index_international.html");
	menu.addSubItem("searchengineid", "Mail @ TNFJ.com", "Free e-mail @ TNFJ.com !",  "http://tnfj.mail.everyone.net");
	menu.addSubItem("searchengineid", "Football Chat", "Football Chat",  "../chat.html");
	menu.addSubItem("searchengineid", "TNFJ Directory", "All the football links you will ever need",  "../Directory/");
	menu.addSubItem("searchengineid", "TNFJ Downloads", "Lots of useful downloads from TNFJ.com", "../Downloads/");
	menu.addSubItem("searchengineid", "TNFJ Store", "Buy books, posters, equipment, videos...",  "../Store/");

	menu.addSubItem("miscid", "EAFCA", "European American Football Coaches Association",  "../EAFCA/");
	menu.addSubItem("miscid", "European Forum", "European Forum",  "../EuroForum/");
	menu.addSubItem("miscid", "TNFJ.com", "The Norwegian Football Junkie",  "../home.html");
	menu.addSubItem("miscid", "Under Center", "Under Center",  "http://www.undercenter.f9.co.uk/");
	menu.addSubItem("miscid", "WCC", "World Coaching Connection",  "http://www.ticino.com/usr/gvolpi");
        menu.addSubItem("miscid", "Your site here ?", "Want to join ?",  "../footballnetwork.html");

	menu.showMenu();
}