//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("webmasterid", "Home", "Home",  null, null);
	menu.addItem("referralid", "Breeder Referral", "Breeder Referral",  null, null);
	menu.addItem("membershipid", "Join Red Pine KC ", "Members - Membership",  null, null);
	menu.addItem("formsid", "Forms", "UKC Entry - Red Pine KC  Mailing List",  null, null);
	menu.addItem("showid", "Show Info", "Show Info",  null, null);
	menu.addItem("directionsid", "Directions to our Show", "Various Direction Formats",  null, null);
	menu.addItem("picturesid", "Pictures from Past Shows", "Pictures from Past Shows",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home",  "http://www.redpinekc.com", "");
	menu.addSubItem("webmasterid", "Mission Statement", "Mission Statement",  "http://www.redpinekc.com/missionstatement.htm", "");
	menu.addSubItem("webmasterid", "Officers", "Club Officers",  "http://www.redpinekc.com/officers.htm", "");
	menu.addSubItem("webmasterid", "Email Red Pine KC", "Email Red Pine KC",  "mailto:redpinekc@yahoo.com", "");
	
	menu.addSubItem("referralid", "Breeder Referral", "Breeder Referral",  "http://www.redpinekc.com/breederreferral.htm", "");
	menu.addSubItem("referralid", "Email", "Email Red Pine KC",  "mailto:redpinekc@yahoo.com?subject=Red Pine KC Breeder Referral", "");


	menu.addSubItem("membershipid", "Membership Info", "Join our club!",  "http://www.redpinekc.com/membershipinformationpage.htm", "");
	menu.addSubItem("membershipid", "Our Members", "Meet our Members",  "http://www.redpinekc.com/members.htm", "");
	menu.addSubItem("membershipid", "Membership Application", "a WORD document",  "http://www.redpinekc.com/RPKCmembershipapp.doc", "");

	menu.addSubItem("picturesid", "Show Candids", "Photos",  "http://www.redpinekc.com/showphotos.htm", "");

	menu.addSubItem("formsid", "Red Pine KC Mailing List", "Join our Mailing List!",  "http://www.redpinekc.com/mailinglistform1.htm", "");
	menu.addSubItem("formsid", "Red Pine KC  Feedback Form", "Tell us what you think!",  "http://www.redpinekc.com/feedbackform1b.htm", "");
	menu.addSubItem("formsid", "Membership Application", "a WORD document",  "http://www.redpinekc.com/RPKCmembershipapp.doc", "");
	menu.addSubItem("formsid", "UKC Entry Form", "An interactive Form",  "http://www.redpinekc.com/ukcentryform2010rev.pdf", "");
	menu.addSubItem("formsid", "Temporary Listing (PDF file)", "Printable Only",  "http://www.redpinekc.com/tl-form.pdf", "");

	menu.addSubItem("showid", "Show Info", "Show Info",  "http://www.redpinekc.com/showinfo.htm", "");
	menu.addSubItem("showid", "Show Flyer", "A Word Document",  "http://www.redpinekc.com/redpineshowflyer.doc", "");
	menu.addSubItem("showid", "Motel Listing", "List of Motels",  "http://www.redpinekc.com/motels.htm", "");
	menu.addSubItem("showid", "", "",  "", "");
	menu.addSubItem("showid", "Directions to Show", "Directions",  "http://www.redpinekc.com/directions.htm", "");

	menu.addSubItem("directionsid", "Directions (Red Pine KC link)", "On this website",  "http://www.redpinekc.com/directions.htm", "");
	menu.addSubItem("directionsid", "Directions to Show", "From Google Maps",  "http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=320+S+Plut+Ave,+Le+Center,+MN&sll=37.0625,-95.677068&sspn=35.821085,91.318359&ie=UTF8&hq=320+S+Plut+Ave,&hnear=Le+Center,+MN&ll=44.376999,-93.708744&spn=0.060121,0.178356&t=h&z=13&iwloc=A", "");

	menu.addSubItem("linksid", "UKC", "United Kennel Club",  "http://www.ukcdogs.com", "");
	menu.addSubItem("linksid", "Webrings", "Where we are listed.",  "http://www.redpinekc.com/webrings.htm", "");
	menu.addSubItem("linksid", "PSS Web Dezinez", "Our web designer",  "http://www.pssweb.net", "");
	
	menu.showMenu();
}