function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("main", "Menu", "See Our Stuff",  null, null);
	menu.addItem("games", "Games", "Have Fun",  null, null);

	menu.addSubItem("main", "Home", "Welcome",  "index.htm");
	menu.addSubItem("main", "About Us", "Clowning",  "about.htm");
	menu.addSubItem("main", "Balloons", "Air Art",  "airart.htm");
	menu.addSubItem("main", "Face Painting", "Smile",  "painting.htm");
	menu.addSubItem("main", "Magic", "magic",  "magic.htm");
	menu.addSubItem("main", "Contact Us", "Call or E-mail Us",  "contact.htm");

	menu.addSubItem("games", "Concentration", "find em",  "concentration.htm");
	menu.addSubItem("games", "Scramble", "slide em",  "slider.htm");
	menu.addSubItem("games", "Coloring Pages", "color fun",  "color.htm");
	menu.addSubItem("games", "Yatzee", "match em",  "yatzee.htm");
	
	menu.showMenu();
}

