//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("shetlandaid", "Shetland Amer.");
	menu.addItem("shetlandnid", "Shetland Natl.");
	menu.addItem("pintoaid", "Pinto Amer.", "Pinto Amer.",  null, null);
	menu.addItem("pintonid", "Pinto Natl.", "Pinto Natl.",  null, null);
	menu.addItem("mustangaid", "Mustang Amer.", "Mustang",  null, null);
	menu.addItem("mustangnid", "Mustang Natl.", "Mustang",  null, null);
	menu.addItem("broncoaid", "Bronco Americans", "Bronco Americans",  null, null);
	menu.addItem("bronconid", "Bronco Nationals", "Bronco Nationals",  null, null);
        //menu.addItem("ponyaid", "Pony", "Pony",  null, null);
        
	menu.addSubItem("shetlandaid", "Home", "Home Page",  "/cyb/index.cfm?league=43544&subsite=5087962", "");
	menu.addSubItem("shetlandaid", "Roster", "Roster",  "/cyb/roster/index.cfm?subsite=5087962&league=43544", "");
	menu.addSubItem("shetlandaid", "Schedule", "Schedule",  "/cyb/schedules/index.cfm?season=549613&division=5087958&subsite=5087962&league=43544", "");

	menu.addSubItem("shetlandnid", "Home", "Home Page",  "/cyb/index.cfm?league=43544&subsite=5087963", "");
	menu.addSubItem("shetlandnid", "Roster", "Roster",  "/cyb/roster/index.cfm?subsite=5087963&league=43544", "");
	menu.addSubItem("shetlandnid", "Schedule", "Schedule",  "/cyb/schedules/index.cfm?season=549613&division=5087958&subsite=5087963&league=43544", "");

	menu.addSubItem("pintoaid", "Home", "Home Page",  "/cyb/index.cfm?league=43544&subsite=5087965", "");
	menu.addSubItem("pintoaid", "Roster", "Roster Page",  "/cyb/roster/index.cfm?subsite=5087965&league=43544", "");
	menu.addSubItem("pintoaid", "Schedule", "Schedule Page",  "/cyb/schedules/index.cfm?season=549613&division=5087959&subsite=5087965", "");

	menu.addSubItem("pintonid", "Home", "Home Page",  "/cyb/index.cfm?league=43544&subsite=5087967", "");
	menu.addSubItem("pintonid", "Roster", "Roster Page",  "/cyb/roster/index.cfm?subsite=5087967&league=43544", "");
	menu.addSubItem("pintonid", "Schedule", "Schedule Page", "/cyb/schedules/index.cfm?season=549613&division=5087959&subsite=5087967", "");

	menu.addSubItem("mustangaid", "Home", "Home Page",  "/cyb/index.cfm?league=43544&subsite=5087969", "");
	menu.addSubItem("mustangaid", "Roster", "Roster Page",  "/cyb/roster/index.cfm?subsite=5087969&league=43544", "");
	menu.addSubItem("mustangaid", "Schedule", "Schedule Page",  "/cyb/schedules/index.cfm?season=549613&division=5087960&subsite=5087969", "");

	menu.addSubItem("mustangnid", "Home", "Home Page",  "/cyb/index.cfm?league=43544&subsite=5087970", "");
	menu.addSubItem("mustangnid", "Roster", "Roster Page",  "/cyb/roster/index.cfm?subsite=5087970&league=43544", "");
	menu.addSubItem("mustangnid", "Schedule", "Schedule Page",  "/cyb/schedules/index.cfm?season=549613&division=5087960&subsite=5087970", "");

        menu.addSubItem("broncoaid", "Home", "Home Page",  "/cyb/index.cfm?league=43544&subsite=5087972", "");
	menu.addSubItem("broncoaid", "Roster", "Roster Page",  "/cyb/roster/index.cfm?subsite=5087972&league=43544", "");
	menu.addSubItem("broncoaid", "Schedule", "Schedule Page",  "/cyb/schedules/index.cfm?season=549613&division=5087961&subsite=5087972&league=43544", "");

	menu.addSubItem("bronconid", "Home", "Home Page",  "/cyb/index.cfm?league=43544&subsite=5087973", "");
	menu.addSubItem("bronconid", "Roster", "Roster Page",  "/cyb/roster/index.cfm?subsite=5087973&league=43544", "");
	menu.addSubItem("bronconid", "Schedule", "Schedule Page",  "/cyb/schedules/index.cfm?season=549613&division=5087961&subsite=5087973&league=43544", "");


        //menu.addSubItem("ponyaid", "Home", "Home Page",  "/cyb/index.cfm?league=43544&subsite=3621489", "");
	//menu.addSubItem("ponyaid", "Roster", "Roster Page",  "/cyb/roster/index.cfm?subsite=3621489&league=43544", "");
	//menu.addSubItem("ponyaid", "Schedule", "Schedule Page",  "/cyb/schedules/index.cfm?season=549613&division=43552&subsite=3621489&league=43544", "");

        menu.showMenu();
}