//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("homeid", "Planned Parrothood", "Planned Parrothood",  null, null);
	menu.addItem("welfareid", "Avian Welfare", "Avian Welfare",  null, null);
	menu.addItem("funid", "Fun Features", "Fun Features",  null, null);
	menu.addItem("featuresid", "Special Features", "Special Features",  null, null);
	menu.addItem("contestsid", "Contests", "Contests",  null, null);

	menu.addSubItem("homeid", "Home Page Index", "Home Page Index",  "http://www.plannedparrothood.com/");
	menu.addSubItem("homeid", "My History", "My History",  "http://www.plannedparrothood.com/pphhist.html");
	menu.addSubItem("homeid", "Contact", "Contact",  "http://www.plannedparrothood.com/contact.html");
	menu.addSubItem("homeid", "Avian Links", "Avian Links",  "http://www.plannedparrothood.com/birdlinks.html");
	menu.addSubItem("homeid", "Hatch Certificates", "Hatch Certificates",  "http://www.plannedparrothood.com/supplies.html");
	menu.addSubItem("homeid", "Suggestions", "Suggestions",  "http://www.plannedparrothood.com/suggestion.html");
	menu.addSubItem("homeid", "Search Site", "Search Site",  "http://plannedparrothood.master.com/texis/master/SS/thunderstone/");
      menu.addSubItem("homeid", "E-Mail", "E-Mail",  "mailto:parrot@plannedparrothood.com");

	menu.addSubItem("welfareid", "Avian Diet", "Avian Diet",  "http://www.plannedparrothood.com/diet.html");
	menu.addSubItem("welfareid", "Helpful Tips", "Helpful Tips",  "http://www.plannedparrothood.com/birdtips/birdtips.html");
	menu.addSubItem("welfareid", "Safe or Toxic Plants", "Safe or Toxic Plants",  "http://www.plannedparrothood.com/plants.html");
	menu.addSubItem("welfareid", "Ask the Vets", "Ask the Vets",  "http://www.plannedparrothood.com/vet.html");
	menu.addSubItem("welfareid", "Vet Listings", "Vet Listings",  "http://www.plannedparrothood.com/vetlist.html");
	menu.addSubItem("welfareid", "The Oath", "The Oath",  "http://www.plannedparrothood.com/oath/commit.html");
	menu.addSubItem("welfareid", "Bird FAQs", "Bird FAQs",  "http://www.plannedparrothood.com/faqs.html");
	menu.addSubItem("welfareid", "Medical Articles", "Medical Articles",  "http://www.plannedparrothood.com/articles/articles.html");
	menu.addSubItem("welfareid", "Fat Birds", "Fat Birds",  "http://www.plannedparrothood.com/fatbirds.html");
	menu.addSubItem("welfareid", "Buying Birds", "Buying Birds",  "http://www.plannedparrothood.com/buying.html");
	menu.addSubItem("welfareid", "Shipping Birds", "Shipping Birds",  "http://www.plannedparrothood.com/shipping/shipping.html");
	menu.addSubItem("welfareid", "Cancer Survey", "Cancer Survey",  "http://www.plannedparrothood.com/jcancerform.html");


	menu.addSubItem("funid", "Parrot Jokes", "Parrot Jokes",  "http://www.plannedparrothood.com/jokes.html");
	menu.addSubItem("funid", "Parrot Wavs", "Parrot Wavs",  "http://www.plannedparrothood.com/wavs/parrotwavs.html");
	menu.addSubItem("funid", "Children's Bird Art", "Children's Bird Art",  "http://www.plannedparrothood.com/childart.html");
	menu.addSubItem("funid", "Parrot Cursors", "Parrot Cursors",  "http://www.plannedparrothood.com/cursors.html");
	menu.addSubItem("funid", "Parrot Blinkies", "Parrot Blinkies",  "http://www.plannedparrothood.com/blinkies.html");
	menu.addSubItem("funid", "Chats & Lists", "Chats & Lists",  "http://www.plannedparrothood.com/chats.html");
	menu.addSubItem("funid", "Parrot Acronyms", "Parrot Acronyms",  "http://www.plannedparrothood.com/acros.html");

	menu.addSubItem("featuresid", "Featured Special Birds", "Featured Special Birds",  "http://www.plannedparrothood.com/jan99bom.html");
	menu.addSubItem("featuresid", "Featured Breeders", "Featured Special Breeders",  "http://www.plannedparrothood.com/1299brdr/1299brdr.html");
	menu.addSubItem("featuresid", "SNIFF & AROMAS", "SNIFF & AROMAS", "http://www.plannedparrothood.com/sniff.html");
	menu.addSubItem("featuresid", "TuClaws Awards", "Tuclaws Awards",  "http://www.plannedparrothood.com/tuclaws.html");
	menu.addSubItem("featuresid", "Photo Slide Show", "Photo Slide Show",  "http://www.plannedparrothood.com/fi/parrotphotos.html");
	menu.addSubItem("featuresid", "Senior Psittacines", "Senior Psittacines",  "http://www.plannedparrothood.com/seniors.html");
	menu.addSubItem("featuresid", "Free Classifieds", "Free Classifieds", "http://www.plannedparrothood.com/Classifieds/class_ad.htm");
	menu.addSubItem("featuresid", "Breeder Listings", "Breeder Listings", "http://www.plannedparrothood.com/BreederListings/breeders.html");

	menu.addSubItem("featuresid", "Stolen Birds", "Stolen Birds",  "http://www.plannedparrothood.com/thefts.html");
	menu.addSubItem("featuresid", "Memorials", "Excite", "http://www.plannedparrothood.com/memorials/memorial.html");
	menu.addSubItem("featuresid", "Tribute to Dagmar", "Tribute to Dagmar",  "http://www.plannedparrothood.com/dagmar.html");



	menu.addSubItem("contestsid", "Photo", "Photo",  "http://www.plannedparrothood.com/shows/photocontests.html");
	menu.addSubItem("contestsid", "Limerick", "Limerick",  "http://www.plannedparrothood.com/contest.html");

	menu.showMenu();
}