//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);
/*menu.addSubItem("webmasterid", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/", "");*/

	menu = new Menu();
	menu.addItem("Home", "Home", "The beginning",  "index.htm");
	menu.addItem("Farm", "The Farm", "Where we live",  null, null);
	menu.addItem("Livestock", "Livestock", "We put the fun in farming",  null, null);
	menu.addItem("Galleries", "Galleries", "More pictures than you can shake a stick at, and a bunch of words to boot",  null, null);
	menu.addItem("About", "About Us", "Perhaps more than you want to know, and links to some of our interests",  "about.htm");
	menu.addItem("Contact", "Contact Us", "Write, call, visit, or at least send money. Or chocolate!", "contact.htm");

	menu.addSubItem("Farm", "An incomplete little history", 	"The Incredibly incomplete and possibly inaccurate little bit we know about the history of this place",  	"history.htm");
	menu.addSubItem("Farm", "The house and property", 		"This wonderful, simple old house and the land it lies on",  	"house.htm");
	menu.addSubItem("Farm", "Mason and the region", 		"Information about the quiet rural town we live in",  		"area.htm");
	
	menu.addSubItem("Livestock", "Scottish Highland cattle", 	"Scottish Highland cattle, those magnificent shaggy beasts", 		"cattle.htm");
	menu.addSubItem("Livestock", "Soay sheep", 			"Soay sheep, one of the most primitive breeds",  			"soays.htm");
        menu.addSubItem("Livestock", "Chickens", 			"Chickens: Not as dumb as you think, but not very danged smart, either",  	"chickens.htm");

	menu.addSubItem("Galleries", "House", 			"Views of our house and outbuildings and land",  "gallery-house.htm");
	menu.addSubItem("Galleries", "Bouviers des Flandres", 	"Our beloved dogs",  				 "gallery-bouvs.htm");
	menu.addSubItem("Galleries", "Eulogy for Georgia", 	"Remembering a friend",  "georgia.htm");
	menu.addSubItem("Galleries", "Cattle", 			"Pics of cows, ours and others",  		"gallery-cattle.htm");
	menu.addSubItem("Galleries", "Sheep", 			"Pics of sheep we have and sheep we've seen",  "gallery-sheep.htm");
	menu.addSubItem("Galleries", "Traditional haying", 	"A celebration of traditional haying",  	"gallery-haying.htm");
	menu.addSubItem("Galleries", "Pasture walks", 		"Visits to other farms to look at pastures",  	"gallery-pasture-walks.htm");

	menu.showMenu();
}