function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);
	
	menu = new Menu();	
	menu.addItem("home", "Tiger & Dragon Home", "T&D Home Page",  null, null);		menu.addItem("links", "Kenpo Links", "Kenpo Links");	
	menu.addItem("hist", "History of Kenpo", "History OF Chinese Kenpo",  null, null);
	menu.addItem("tree", "Bart Vales Kenpo Tree   ", "Kenpo Tree",  null, null);	
	menu.addItem("pics", "Pictures & Videos", "Pics & Videos",  null, null);		menu.addItem("bart", "Bart Vale", "Who is Bart Vale",  null, null);
	menu.addItem("events", "Upcoming Events", "Up Coming Events",  null, null);	
	
	
	menu.addSubItem("home", "T & D Home Page", "T & D Home Page Laminators","http://www.tdkarate.com/", "");	
	
	menu.addSubItem("links", "Shootfighting®", "Shootfighting®", 
"http://www.shootfighting.com/");
	menu.addSubItem("links", "World Karate Org", "World Karate Organization",  
"http://www.wwko.org/");
	menu.addSubItem("links", "Tiger Dragon Miami", "Tiger Dragon Miami",  
"http://www.tigerdragonmiami.com");	
	menu.addSubItem("links", "Tracys Karate", "Tracys Karate",  
"http://www.tracyskarate.com");
	menu.addSubItem("links", "Black Belt Magazine", "Blackbelt Magazine",  
"http://www.blackbeltmag.com/videos/25");

	menu.addSubItem("hist", "Chinese Kenpo", "The History of Kenpo",  
"http://www.tdkarate.com/hist/", ""); 

	menu.addSubItem("tree", "Black Belt Tree", "Our Black Belt Tree",  
"http://www.tdkarate.com/tree/", ""); 			

	menu.addSubItem("pics", "Pictures and Videos", "Pictures and Videos",  "http://www.tdkarate.com/pics", "");	
	
	menu.addSubItem("bart", "Who is Bart Vale?", "Who is Bart Vale?",  
"http://www.tdkarate.com/bart/", "");

	menu.addSubItem("events", "Upcoming Events", "Upcoming Events & Schedules",  
"http://www.tdkarate.com/events/", "");

menu.showMenu();}