//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homes", "Home", "Home", "http://www.indmowing.com.au/Ausled2/", null);
	menu.addItem("bs", "Breed Standard", "Swedish Vallhund Standard", "http://www.indmowing.com.au/Ausled2/vallhund_standard.htm", null);
	menu.addItem("History", "SV History", "History of The Swedish Vallhund",  "http://www.indmowing.com.au/Ausled2/swedish_vallhund_history.htm", null);
	menu.addItem("temp", "SV Temperament", "Swedish Vallhund Temperament",  "http://www.indmowing.com.au/Ausled2/swedish_vallhund_temperament.htm", null);
	menu.addItem("appearance", "SV Appearance", "Appearance of the Swedish Vallhund", null, null);
	menu.addItem("photo", "Photographs", "Swedish Vallhund Images",  null, null);
	menu.addItem("contact", "Contact & Links", "contact", null, null);

	menu.addSubItem("appearance", "General Appearance", "General Appearance",  "http://www.indmowing.com.au/Ausled2/vallhund_appearance.htm");
	menu.addSubItem("appearance", "Coat and Colours", "Coat and Colours",  "http://www.indmowing.com.au/Ausled2/vallhund_coat.htm");
	menu.addSubItem("appearance", "Forequarters", "Forequarters",  "http://www.indmowing.com.au/Ausled2/vallhund_forequarters.htm");
	menu.addSubItem("appearance", "Hindquarters", "Hindquarters",  "http://www.indmowing.com.au/Ausled2/vallhund_hindquarters.htm");
	menu.addSubItem("appearance", "Movement", "Movement",  "http://www.indmowing.com.au/Ausled2/movement.htm");
	menu.addSubItem("appearance", "SV Head", "Movement",  "http://www.indmowing.com.au/Ausled2/head_skull.htm");

	menu.addSubItem("photo", "Photogallery", "Swedish Vallhund Photogallery",  "http://www.indmowing.com.au/Ausled2/photo_gallery.htm");
	menu.addSubItem("photo", "Worldwide Photos", "Photographs from World over",  "http://www.indmowing.com.au/Ausled2/photographs_worldwide.htm");
	menu.addSubItem("photo", "Margarets Photos", "Pics from Margert in England",  "http://www.indmowing.com.au/Ausled2/marg.htm");

	menu.addSubItem("contact", "Contact Us", "Contact Ausled or Kloval Kennels",  "http://www.indmowing.com.au/Ausled2/contact.htm");
	menu.addSubItem("contact", "Leave a Message", "Leave A Message on Guestbook",  "http://two.guestbook.de/gb.cgi?gid=383129&prot=lvowfs");
	menu.addSubItem("contact", "Links", "Links",  "http://www.indmowing.com.au/Ausled2/links.htm");
	menu.addSubItem("contact", "Website Awards", "View our website Awards",  "http://www.indmowing.com.au/Ausled2/Awards.htm");


	menu.showMenu();
}