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

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

	menu = new Menu();
	menu.addItem("bullfightsid", "Bullfights", "Bullfights",  null, null);
	menu.addItem("tijuanaid", "Tijuana", "Tijuana",  null, null);
	menu.addItem("mexicaliid", "Mexicali", "Mexicali",  null, null);
	menu.addItem("schedulesid", "Schedules", "Schedules",  null, null);
	menu.addItem("newsid", "News", "News",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);

	menu.addSubItem("bullfightsid", "Bullfights Home", "Bullfights Home",  "http://www.bullfights.org/", "");
	
	menu.addSubItem("tijuanaid", "Tijuana Home", "Tijuana Home",  "http://www.bullfights.org/tijuana/index.shtml", "");
	
	menu.addSubItem("mexicaliid", "Mexicali Home", "Mexicali Home",  "http://www.bullfights.org/mexicali/index.shtml", "");

	menu.addSubItem("schedulesid", "Schedules", "Schedules",  "http://www.bullfights.org/schedules/index.shtml", "");

	menu.addSubItem("newsid", "News", "News",  "http://www.bullfights.org/news/index.shtml", "");

	menu.addSubItem("miscid", "Miscellaneous", "Miscellaneous",  "http://www.bullfights.org/misc/index.shtml", "");
	menu.addSubItem("miscid", "FAQ", "FAQ",  "http://www.bullfights.org/misc/faq/index.shtml", "");

	menu.addSubItem("linksid", "Links", "Links",  "http://www.bullfights.org/links/index.shtml", "");
	
	menu.showMenu();
}