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("classid", "Classes", "Class Times",  "classes.html", 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",  "instructor.html", null);	
	menu.addItem("linksid", "Links", "Other T.A.G.B. websites",  null, null);
	menu.addItem("shopid", "TKD Shop", "Online Catalogue",  "http://www.tagb.biz/cat-index.htm", null);
	menu.addItem("contactsid", "Contact Us", "Cpntact Us",  "contact.html", null);	

	menu.addSubItem("tkdid", "Tae Kwon-do History", "",  "tkdhistory.html");
	menu.addSubItem("tkdid", "Aspects of Tae Kwon Do", "",  "aspects.html");
	menu.addSubItem("tkdid", "5 Tenets", "",  "5tenets.html");
	menu.addSubItem("tkdid", "The Belts", "",  "belts.html");
	menu.addSubItem("tkdid", "Patterns", "",  "patterns.html");


	menu.addSubItem("tagbid", "History of the T.A.G.B.", "",  "tagb.html");
	menu.addSubItem("tagbid", "T.A.G.B. Official Website", "",  "http://www.tagb.biz");
	menu.addSubItem("tagbid", "T.A.G.B. Competition Results", "",  "results.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", "",  "http://www.tagb.biz/cat-index.htm");
	menu.addSubItem("linksid", "Members Area", "",  "http://www.tagb.fsnet.co.uk/dialupmenu.html");

	menu.showMenu();
}