//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("websiteid", "About SVRR", "About SVRR",  null, null);
	menu.addItem("catsid", "Cats for Adoption", "Cats for Adoption",  null, null);
	menu.addItem("dogsid", "Dogs for Adoption", "Dogs for Adoption",  null, null);
	menu.addItem("rescueid", "Rescue Links", "Rescue Links",  null, null);
	menu.addItem("creditid", "Credit Links", "Credit Links",  null, null);

	menu.addSubItem("websiteid", "About SVRR", "About SVRR",  "http://www.angelfire.com/va3/svrr/About.html", "");
	menu.addSubItem("websiteid", "Contact Us", "Contact Us",  "http://www.angelfire.com/va3/svrr/Contact.html", "");
	menu.addSubItem("websiteid", "Donate to SVRR", "Donate to SVRR",  "http://www.angelfire.com/va3/svrr/Give.html", "");
	menu.addSubItem("websiteid", "Terms of Service", "Terms of Service",  "http://www.angelfire.com/va3/svrr/TOS.html", "_blank");
	menu.addSubItem("websiteid", "Transports", "Transports",  "http://www.angelfire.com/va3/svrr/Transport.html", "_blank");

	menu.addSubItem("catsid", "Cats - Female", "Cats - Female",  "http://www.angelfire.com/va3/svrr/CF.html", "");
	menu.addSubItem("catsid", "Cats - Male", "Cats - Male",  "http://www.angelfire.com/va3/svrr/CM.html", "");
	menu.addSubItem("catsid", "Kittens - Female", "Kittens - Female",  "http://www.angelfire.com/va3/svrr/KF.html", "");
	menu.addSubItem("catsid", "Kittens - Male", "Kittens - Male",  "http://www.angelfire.com/va3/svrr/KM.html", "");
	
	menu.addSubItem("dogsid", "Dogs - Female", "Dogs - Female",  "http://www.angelfire.com/va3/svrr/DF.html", "");
	menu.addSubItem("dogsid", "Dogs - Male", "Dogs - Male",  "http://www.angelfire.com/va3/svrr/DM.html", "");
	menu.addSubItem("dogsid", "Puppies - Female", "Puppies - Female",  "http://www.angelfire.com/va3/svrr/PF.html", "");
        menu.addSubItem("dogsid", "Puppies - Male", "Puppies - Male",  "http://www.angelfire.com/va3/svrr/PM.html", "");

	menu.addSubItem("rescueid", "Cats by Location", "Cats by Location",  "http://www.angelfire.com/va3/svrr/Cats.html", "");
	menu.addSubItem("rescueid", "Dogs by Location", "Dogs by Location",  "http://www.angelfire.com/va3/svrr/Dogs.html", "");
	menu.addSubItem("rescueid", "SVRR on Petfinder", "SVRR on Petfinder", "http://www.petfinder.org/shelters/VA116.html", "");
        menu.addSubItem("rescueid", "Cara", "Clinton Animal Rescue & Adoption", "http://www.carams.org", "");
	menu.addSubItem("rescueid", "Martinsville SPCA", "Martinsville SPCA",  "http://www.spcamhc.org/", "");
        menu.addSubItem("rescueid", "Pound Pals of Radford/Animal Shelter", "Pound Pals of Radford/Animal Shelter", "http://www.petfinder.org/shelters/VA180.html", "");

	menu.addSubItem("creditid", "Dynamic Drive", "Dynamic Drive",  "http://www.DynamicDrive.com/", "");
	menu.addSubItem("creditid", "Peggy Rose", "Peggy Rose",  "http://www.spiritone.com/~pr/", "");
	menu.addSubItem("creditid", "Vixen's Graffix", "Vixen's Graffix",  "http://www.angelfire.com/va2/ACV", "");

	menu.showMenu();
}