//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home", "http://www.htmplayers.com/", "http://www.htmplayers.com/");
	menu.addItem("aboutid", "About Us", "About Us", null, null);
	menu.addItem("performid", "Past Performances", "Past Performances", "http://www.htmplayers.com/past.htm", "http://www.htmplayers.com/past.htm");

	menu.addItem("store", "HTM Online Store", "HTM Online Store", "http://www.cafeshops.com/htmplayers", "http://www.cafeshops.com/htmplayers");
	menu.addItem("linksid", "Links", "Links", "http://www.htmplayers.com/links.htm", "http://www.htmplayers.com/links.htm");
	menu.addItem("contactid", "Contact Us", "Contact Us", null, null);


	menu.addSubItem("aboutid", "About Us", "About Us", "http://www.htmplayers.com/aboutus.htm"); 
	menu.addSubItem("aboutid", "Announce Archives", "Announce Mailing List Archives", "http://www.htmplayers.com/announce.htm"); 
	menu.addSubItem("aboutid", "Newsletters", "Newsletters", "http://www.htmplayers.com/newsletters.htm"); 
	menu.addSubItem("aboutid", "Press Releases", "Press Releases", "http://www.htmplayers.com/press/press.htm");

	menu.addSubItem("contactid", "Contact Us", "Contact Us", "http://www.htmplayers.com/contacts.htm");
	menu.addSubItem("contactid", "Mailing List", "Mailing List", "http://www.htmplayers.com/mailinglist.htm");
	menu.addSubItem("contactid", "Directions", "Directions", "http://www.htmplayers.com/directions.htm");



	menu.showMenu();
}