//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", "Home", "Home",  null, null);
	menu.addItem("feesid", "Fees", "Fees",  null, null);
	menu.addItem("termsid", "Terms & Conditions", "Terms & Conditions",  null, null);
	menu.addItem("scheduleid", "Shows I will be doing.", "Show Schedule for Rebecca L. Carner",  null, null);
	menu.addItem("groupsid", "The Groups", "The Groups",  null, null);
	menu.addItem("akcid", "AKC", "American Kennel Club",  null, null);
	menu.addItem("superid", "Superintendents", "Superintendents",  null, null);
	menu.addItem("attorneyid", "Attorney @ Law", "Estate Planning for you and your dog",  null, null);
	menu.addItem("healthid", "Health Links", "Health Links",  null, null);
	

	menu.addSubItem("homeid", "Home", "Home",  "http://rebecca.pssweb.net", "");
	menu.addSubItem("homeid", "Mission Statement", "Mission Statement",  "http://rebecca.pssweb.net/missionstatement.htm", "");
	menu.addSubItem("homeid", "Email", "Email",  "mailto:rlcarner@yahoo.com?subject=Hello Rebecca L. Carner, All-breed Handler", "");

	menu.addSubItem("feesid", "Fees", "Fees",  "http://rebecca.pssweb.net/fees.htm", "");
	menu.addSubItem("feesid", "Fees (PDF file)", "A PDF file",  "http://rebecca.pssweb.net/feesprinterversion.pdf", "");

	menu.addSubItem("termsid", "Terms & Conditions", "Terms & Conditions",  "http://rebecca.pssweb.net/termsandconditions.htm", "");
	menu.addSubItem("termsid", "T&C (PDF File)", "a PDF file",  "http://rebecca.pssweb.net/termsandconditions.pdf", "");

	menu.addSubItem("scheduleid", "Shows I will be doing", "Webpage",  "http://rebecca.pssweb.net/schedule.htm", "");
	menu.addSubItem("scheduleid", "Schedule Printer-Friendly", "PDF file",  "http://rebecca.pssweb.net/showschedule.pdf", "");


	menu.addSubItem("groupsid", "Sporting Group", "Images of Dogs I handle",  "http://rebecca.pssweb.net/sporting.htm", "");
	menu.addSubItem("groupsid", "Hound Group", "Images of Dogs I handle",  "http://rebecca.pssweb.net/hound.htm", "");
	menu.addSubItem("groupsid", "Working Group", "Images of Dogs I handle",  "http://rebecca.pssweb.net/working.htm", "");
	menu.addSubItem("groupsid", "Terrier Group", "Images of Dogs I handle",  "http://rebecca.pssweb.net/terrier.htm", "");
	menu.addSubItem("groupsid", "Toy Group", "Images of Dogs I handle",  "http://rebecca.pssweb.net/toy.htm", "");
	menu.addSubItem("groupsid", "Non-Sporting Group", "Images of Dogs I handle",  "http://rebecca.pssweb.net/nonsporting.htm", "");
	menu.addSubItem("groupsid", "Herding Group", "Images of Dogs I handle",  "http://rebecca.pssweb.net/herding.htm", "");

	
	menu.addSubItem("akcid", "AKC", "American Kennel Club",  "http://www.akc.org", "");
	menu.addSubItem("akcid", "DNA Program", "AKC",  "http://www.akc.org/registration/dna/", "");
	menu.addSubItem("akcid", "CGC", "Canine Good Citizen Program",  "http://www.akc.org/love/cgc/index.cfm", "");

	menu.addSubItem("superid", "Moss Bow-Foley", "MB-F",  "http://www.infodog.com", "");
	menu.addSubItem("superid", "Jack Bradshaw", "Jack Bradshaw",  "http://www.jbradshaw.com", "");
	menu.addSubItem("superid", "Jim Rau", "Jim Rau",  "http://www.raudogshows.com", "");
	menu.addSubItem("superid", "Jack Onofrio", "Jack Onofrio",  "http://www.onofrio.com", "");
	menu.addSubItem("superid", "Newport Dog Shows", "Newport",  "http://www.newportdogshows.com", "");
	
	menu.addSubItem("attorneyid", "Estate Planning for you and your dog", "Puppy,  Stud Dog Contracts, Lease Agreements, Co-ownerships",  "http://rebecca.pssweb.net/takecareofyourdog.htm", "");

	menu.addSubItem("healthid", "OFA", "Orthopedic Foundation for Animals",  "http://www.offa.org", "");
	menu.addSubItem("healthid", "CERF", "Canine Eye Registry Foundation",  "http://www.vmdb.org/cerf.html", "");
	
	menu.showMenu();
}