//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("Simbathe Labradors", "Home Page", "Home",  "index.html", null);
	menu.addItem("Pet Products", "Pet Products", "Petproducts",  "indexb.html", null);
        menu.addItem("Lab Standard", "Lab Standard", "Lab Standard",  "standard.html", null);
        menu.addItem("About us", "About us", "About us",  "aboutus.html", null);
	menu.addItem("Our Boys", "Our Boys", "Our Boys", "ourboys.html ", null);
	menu.addItem("Our Girls", "Our Girls", "Our Girls",  "ourgirls.html", null);
	menu.addItem("Photo Gallery", "Photo Gallery", "Photo Gallery",  "ourpuppies.html", null);
        menu.addItem("Ross Gang", "Ross Gang", "Ross Gangry",  "rossgang.html", null);


      menu.addItem("Champions", "Champions", "Champions",  "champions.html", null);
	 menu.addItem("For Sale", "For Sale", "For Sale",  "forsale.html", null);
menu.addItem("Contact Us", "Contact Us", "Contact Us",  "contactus.html", null);
menu.addItem("Memorial", "Rainbow Bridge", "Memorial", "rainbowbridge.html", null);

 



      



	menu.showMenu();
}


