//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("reportsid", "Breeding Reports", "Breeding Reports", null, null);
	menu.addItem("galleryid", "Gallery", "Gallery",  null, null);
	menu.addItem("saleid", "For Sale", "For Sale",  null, null);
	menu.addItem("miscid", "My Links", "My Links",  null, null);
	menu.addItem("homeid", "Home", "Home",  null, null);

	menu.addSubItem("reportsid", "Click Here", "Click Here", "http://cinci-fishfarmer.com/reports/Breedingreports.html", "");

	menu.addSubItem("galleryid", "Angelfish", "Angelfish",  "http://cinci-fishfarmer.com/Angelfish.html", "");
	menu.addSubItem("galleryid", "Livebearers", "Livebearers",  "http://cinci-fishfarmer.com/Livebearers.html", "");
	menu.addSubItem("galleryid", "Catfish", "Catfish",  "http://cinci-fishfarmer.com/Catfish.html", "");
	menu.addSubItem("galleryid", "Cichlids", "Cichlids",  "http://cinci-fishfarmer.com/Cichlids.html", "");
	menu.addSubItem("galleryid", "Anabantoids", "Anabantoids",  "http://cinci-fishfarmer.com/Anabantoids.html", "");
	menu.addSubItem("galleryid", "Rainbows", "Rainbows",  "http://cinci-fishfarmer.com/Rainbows.html", "");
	menu.addSubItem("galleryid", "Fish on Stamps", "Fish on Stamps", "http://cinci-fishfarmer.com/FishonStamps.html", "");

	menu.addSubItem("saleid", "Click Here", "Click Here", "http://cinci-fishfarmer.com/ForSalepage.html", "");

	menu.addSubItem("miscid", "Greater Cincinnati Aquarium Society", "Greater Cincinnati Aquarium Society",  "http://www.gcas.org/", "");
	menu.addSubItem("miscid", "American Livebearer Association", "American Livebearer Association",  "http://livebearers.org/", "");
	menu.addSubItem("miscid", "American Cichlid Association", "American Cichlid Association",  "http://cichlid.org", "");
	menu.addSubItem("miscid", "Xiphophorus Home Page", "Xiphophorus Home Page",  "http://www.xiphophorus.org/", "");

	menu.addSubItem("homeid", "Click Here", "Click Here", "http://www.cinci-fishfarmer.com", "");

	menu.showMenu();
}