//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("webmasterid", "Home", "Home",  null, null);
	menu.addItem("servicesid", "Services", "Services",  null, null);
	menu.addItem("portfolioid", "Portfolio", "Portfolio",  null, null);
	menu.addItem("healthid", "Dog Health Links", "Dog Health Links",  null, null);
	menu.addItem("slideshowsid", "Links to various slide shows", "just that... slide shows",  null, null);
	menu.addItem("personalprojectsid", "Some of our projects", "Projects",  null, null);
	menu.addItem("clientsid", "Clients", "Clients",  null, null);
	

	menu.addSubItem("webmasterid", "PSS Web Dezinez", "PSS Web Dezinez",  "http://www.pssweb.net", "");
	menu.addSubItem("webmasterid", "Email", "Email",  "mailto:pssweb@earthlink.net?subject=Hello PSS Web Dezinez", "");
	

	menu.addSubItem("servicesid", "Services", "Services",  "http://www.pssweb.net/services.htm", "");
	menu.addSubItem("servicesid", "Webrings", "Webrings where we are listed",  "http://www.pssweb.net/webrings.htm", "");
	
	menu.addSubItem("healthid", "Nu-Vet", "Vitamins - Hip-Joint",  "http://www.pssweb.net/nuvet.htm", "");


	menu.addSubItem("portfolioid", "Portfolio", "What we can do... (2004)",  "http://www.pssweb.net/myportfolio/", "");
	menu.addSubItem("portfolioid", "Portfolio II", "What we can do... (2006)",  "http://www.pssweb.net/juelle/", "");
	menu.addSubItem("portfolioid", "Snow Globes", "Snow Globes",  "http://www.pssweb.net/snowglobes.htm", "");

	menu.addSubItem("slideshowsid", "Aiyana", "off site",  "http://wachusett.pssweb.net/aiyanashowpix.htm", "");
	menu.addSubItem("slideshowsid", "Carport", "on site",  "http://www.pssweb.net/carportshow.htm", "");
	menu.addSubItem("slideshowsid", "Our Deck", "on site",  "http://www.pssweb.net/deckslideshow.htm", "");
	menu.addSubItem("slideshowsid", "Kennel Cover", "on site",  "http://www.pssweb.net/kennelcovershow.htm", "");

	menu.addSubItem("personalprojectsid", "Whelping Box", "",  "http://www.pssweb.net/whelpingboxassembly.htm", "");
	menu.addSubItem("personalprojectsid", "Kennel Cover", "Photos",  "http://www.pssweb.net/kennelcoverpictures.htm", "");
	menu.addSubItem("personalprojectsid", "Kennel Cover Collapse", "Sad day...",  "http://www.pssweb.net/kennelcovercollapse.htm", "");


	menu.addSubItem("clientsid", "Wachusett", "Wachusett American Eskimos",  "http://wachusett.pssweb.net", "");
	menu.addSubItem("clientsid", "Rebecca L. Carner", "All-breed Professional Dog Handler",  "http://rebecca.pssweb.net", "");
	menu.addSubItem("clientsid", "Alpine", "Alpine American Eskimos",  "http://alpine.pssweb.net", "");
	menu.addSubItem("clientsid", "BeSota", "BeSota American Eskimos",  "http://besota.pssweb.net", "");
	menu.addSubItem("clientsid", "AEDCONE", "American Eskimo Dog Club of New England",  "http://aedcone.pssweb.net", "");
	menu.addSubItem("clientsid", "NAEDAC", "National American Eskimo Dog Association of Canada",  "http://www.naedac.ca", "");

	
	menu.showMenu();
}