//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("A", "Our Club", "",  null, null);
	menu.addItem("B", "The Bulldog", "",  null, null);
	menu.addItem("C", "Dog Shows", "",  null, null);
	menu.addItem("D", "Other sites", "Other Bulldog or canine sites",  "../links.htm","");
	menu.addItem("E", "Humour/Photos", "Funny photos of bulldogs", "../humour/humour.htm", "");
		
	menu.addSubItem("A", "Home in French", "Home", "../index.htm","");
	menu.addSubItem("A", "The Club du Bulldog", "Our Club", "doc2.htm#partie club","");
	menu.addSubItem("A", "Committee-regional delegates", "addresses",  "../adres.htm","");
	menu.addSubItem("A", "Code of Ethics", "Ethics",  "../charte.htm", "");
	menu.addSubItem("A", "Breeders who comply", "Breeders who comply with the Code of ethics",  "../elevchar.htm", "");
	menu.addSubItem("A", "Puppies", "Puppies for sale",  "../chiots.htm", "");
	
	menu.addSubItem("A", "Our old bulldogs/photos", "Old ones",  "../vieux/vieux.htm", "");
	menu.addSubItem("A", "2010 Club Show", "NE 2010",  "../NE/NE2010.htm", "");
	menu.addSubItem("A", "Régionale d'élevage", "Fete",  "../fete/Fete.htm", "");

	menu.addSubItem("B", "The Bulldog", "The breed",  "thebull.htm", "");
	menu.addSubItem("B", "The Breed  Standard", "The English KC Standard",  "stand2.htm", "");
	menu.addSubItem("B", "Frequently Asked Questions", "FAQ",  "FAQ.htm", "");

	menu.addSubItem("C", "Expos, TAN (in French)", "The shows explained",  "../tan.htm", "");
	menu.addSubItem("C", "Cotations (in French)", "",  "../tan.htm#select", "");
	menu.addSubItem("C", "Next shows", "Next French shows",  "../expo.htm", "");
	menu.addSubItem("C", "Main show results", "Results of French shows",  "../resexp.htm", "");
	menu.addSubItem("C", "The French judges", "French Bulldog Judges",  "../juges.htm", "");


	menu.showMenu();
}