function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Go Home",  "index.html",  null);
	menu.addItem("clubsid", "Clubs", "Club Information",  null, null);
	menu.addItem("tkdid", "T.K.D.", "About Tae Kwon-do",  null, null);
	menu.addItem("tagbid", "T.A.G.B.", "About the T.A.G.B.",  null, null);
	menu.addItem("faqid", "F.A.Q.", "Frequently Asked Questions",  "faq.html", null);	
	menu.addItem("instructorid", "Instructor", "The Instructor",  null, null);	
	menu.addItem("shopid", "TKD Shop", "Online Catalogue",  "shop.html", null);	
	menu.addItem("photoid", "Photo Gallery", "Photo Gallery",  "gallery.html", null);	
	menu.addItem("linksid", "Links", "Other T.A.G.B. websites",  null, null);

	menu.addSubItem("clubsid", "Warwick", "", "warwick.html");
	menu.addSubItem("clubsid", "Solihull", "", "solihull.html");

	menu.addSubItem("tkdid", "Tae Kwon-do History", "",  "tkdhistory.html");
	menu.addSubItem("tkdid", "Self Defence", "",  "selfdefence.html");
	menu.addSubItem("tkdid", "Self Confidence", "",  "confidence.html");
	menu.addSubItem("tkdid", "Children", "",  "children.html");
	menu.addSubItem("tkdid", "Padwork", "",  "padwork.html");
	menu.addSubItem("tkdid", "Patterns", "",  "patterns.html");
	menu.addSubItem("tkdid", "Flexibility", "",  "flexibility.html");
	menu.addSubItem("tkdid", "New Goals", "",  "newgoals.html");
	menu.addSubItem("tkdid", "Discipline", "",  "discipline.html");
	menu.addSubItem("tkdid", "Safety", "",  "safety.html");
	menu.addSubItem("tkdid", "Fitness", "",  "fitness.html");
	menu.addSubItem("tkdid", "Structure", "",  "structure.html");
	menu.addSubItem("tkdid", "5 Tenets", "",  "5tenets.html");
	menu.addSubItem("tkdid", "The Belts", "",  "belts.html");


	menu.addSubItem("tagbid", "History of the T.A.G.B.", "",  "tagbhistory.html");
	menu.addSubItem("tagbid", "T.A.G.B. Official Website", "",  "http://www.tagb.biz");

        menu.addSubItem("instructorid", "Profile", "","profile.html");
        menu.addSubItem("instructorid", "Books: Tae Kwon Do", "","book.html");

	menu.addSubItem("linksid", "T.A.G.B. Official Website", "",  "http://www.tagb.biz");
	menu.addSubItem("linksid", "TKD International", "",  "http://www.tkdinternational.com");
	menu.addSubItem("linksid", "T.A.G.B. Shop", "",  "shop.html");


	menu.showMenu();
}
