//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("fountainid", "FOUNTAINS", "FOUNTAINS",  null, null);
	menu.addItem("pondid", "PONDS", "PONDS",  null, null);
	menu.addItem("serviceid", "SERVICES", "SERVICES",  null, null);
	menu.addItem("productid", "PRODUCTS", "PRODUCTS",  null, null);
	menu.addItem("contactid", "CONTACT US", "CONTACT US",  null, null);

	menu.addSubItem("fountainid", "COMPLETE FOUNTAINS", "COMPLETE FOUNTAINS", "http://www.store.yahoo.com/aquatecfountains/fountains1.html" "_self");
	menu.addSubItem("fountainid", "REPLACEMENT PUMPS", "REPLACEMENT PUMPS", "http://www.store.yahoo.com/aquatecfountains/fountains1.html");
	menu.addSubItem("fountainid", "SEALANTS", "SEALANTS", "http://www.store.yahoo.com/aquatecfountains/fountains1.html");
	menu.addSubItem("fountainid", "LIGHTING", "LIGHTING", "http://www.store.yahoo.com/aquatecfountains/fountains1.html");
	
	menu.addSubItem("pondid", "LINERS", "LINERS", "http://www.store.yahoo.com/aquatecfountains/fountains1.html");
	menu.addSubItem("pondid", "KITS", "KITS", "http://www.store.yahoo.com/aquatecfountains/fountains1.html");
	menu.addSubItem("pondid", "FILTERS", "FILTERS", "http://www.store.yahoo.com/aquatecfountains/fountains1.html");
	menu.addSubItem("pondid", "CLARIFIERS", "CLARIFIERS", "http://www.store.yahoo.com/aquatecfountains/fountains1.html");
	menu.addSubItem("pondid", "ACCESSORIES", "ACCESSORIES", "http://www.store.yahoo.com/aquatecfountains/fountains1.html");

	menu.addSubItem("serviceid", "REPAIRS", "REPAIRS", "http://www.3950288.com/fountain-pond-design-repair.htm");
	menu.addSubItem("serviceid", "CLEANINGS", "CLEANINGS", "http://www.3950288.com/fountain-pond-design-repair.htm");
	menu.addSubItem("serviceid", "INSTALLATION", "INSTALLATIONS", "http://www.3950288.com/fountain-pond-design-repair.htm");
	menu.addSubItem("serviceid", "MAINTENANCE", "MAINTENANCE", "http://www.3950288.com/fountain-pond-design-repair.htm");

	menu.addSubItem("productid", "PUMPS", "PUMPS", "http://www.3950288.com/fountain_pond_parts.htm");
	menu.addSubItem("productid", "NOZZLES", "NOZZLES", "http://www.3950288.com/fountain_pond_parts.htm");
	menu.addSubItem("productid", "SEALANTS", "SEALANTS", "http://www.3950288.com/fountain_pond_parts.htm");
	menu.addSubItem("productid", "MORE PARTS", "MORE PARTS", "http://www.3950288.com/fountain_pond_parts.htm");
	
	menu.addSubItem("contactid", "EMAIL", "EMAIL",  "http://www.3950288.com/company.htm");
	menu.addSubItem("contactid", "PHONE NUMBER", "PHONE NUMBER",  "http://www.3950288.com/company.htm");
	menu.addSubItem("contactid", "ADDRESS", "ADDRESS",  "http://www.3950288.com/company.htm");

	menu.showMenu();
}