//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("join", "Join", "Join", null, null);
        menu.addItem("sanction", "Sanction Request", "Sanction Request", null, null);
	menu.addItem("officer", "Officers", "Officers",  "officers.html", null);
	menu.addItem("directors", "Directors", "Directors",  "directors.html", null);
	menu.addItem("members", "Members", "Members",  "members.html", null);
	menu.addItem("about", "About Jersey Woolys", "About Jersey Woolys",  null, null);
	menu.addItem("sweepstakes", "Sweepstakes", "Sweepstakes",  null, null);
	menu.addItem("b4cbis", "BOB/B4C/BIS", "BOB/B4C/BIS",  "best.html", null);
	menu.addItem("newsletter", "Newletter", "Newsletter",  "news.html", null);
	menu.addItem("shows", "Shows", "Shows",  null, null);
        menu.addItem("links", "Links", "Links",  null, null);
        menu.addItem("guestbook", "Guestbook", "Guestbook",  "guestbook.html", null);
        menu.addItem("home", "Home", "Home",  "http://www.ohiojerseywoolyrabbitclub.com/", null);

        menu.addSubItem("join", "Join", "Join",  "http://www.ohiojerseywoolyrabbitclub.com/join.html", "_blank");

        menu.addSubItem("sanction", "Sanction Request", "Sanction Request",  "http://www.ohiojerseywoolyrabbitclub.com/sanction.html", "_blank");

        menu.addSubItem("about", "Color Groups", "Color Groups",  "color.html", "");
        menu.addSubItem("about", "General Type", "General Type",  "type.html", "");
        menu.addSubItem("about", "Showing Order", "Showing Order",  "showing.html", "");

        menu.addSubItem("sweepstakes", "Youth", "Youth",  "youth.html", "");
        menu.addSubItem("sweepstakes", "Open", "Open",  "open.html", "");
        menu.addSubItem("sweepstakes", "Figuring Points", "Figuring Points",  "points.html", "");

        menu.addSubItem("shows", "2008 Shows", "2008 Shows",  "2008shows.html", "");
        menu.addSubItem("shows", "2008 Show Reports", "2008 Show Reports",  "2008showreports.html", "");
        menu.addSubItem("shows", "2008 Youth Specialty", "2008 Youth Specialty",  "2008youthspecialtyshow.html", "");
        menu.addSubItem("shows", "2008 Open Specialty", "2008 Open Specialty",  "2008openspecialtyshow.html", "");                
        menu.addSubItem("shows", "2008 ARBA Convention", "2008 ARBA Convention",  "2008arbaconv.html", "");
        
        menu.addSubItem("links", "Rabbit Sites", "Rabbit Sites",  "links.html", "");
        menu.addSubItem("links", "ARBA", "ARBA",  "http://www.arba.net/", "_blank");
        menu.addSubItem("links", "OSRBA", "OSRBA",  "http://www.osrba.net/", "_blank");
        menu.addSubItem("links", "District 8", "District 8",  "http://www.arba.net/district/8/", "_blank");
        menu.addSubItem("links", "Nat'l JW RC", "Nat'l JW RC",  "http://www.njwrc.net/", "_blank");
	menu.showMenu();
}
