//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("productsid", "Products", "Products",  null, null);
	menu.addItem("Manufacturesid", "Manufactures", "Manufactures",  null, null);
	menu.addItem("customerserviceid", "Customer Service", "Customer Service",  null, null);
	
	menu.addSubItem("webmasterid", "Home", "Home",  "\index.html", "");
	menu.addSubItem("webmasterid", "Electrical Supplies", "Electrical Supplies",  "\ electrical-supplies-online.html", "");
	menu.addSubItem("webmasterid", "Used Circuit breakers", "Used Circuit Breakers",  "\ used-circuit-breakers.html", "");
	menu.addSubItem("webmasterid", "Used Electrical Equipment", "Used Electrical Equipment",  "\ used-electrical-equipment.html", "");
	
	menu.addSubItem("productsid", "Circuit Breakers", "Cicuit Breakers",  "\ circuit-breakers.html", "");
	menu.addSubItem("productsid", "Fuses", "Fuses",  "\ fuses.html", "");
	menu.addSubItem("productsid", "Motor Control", "Motor Control",  "\motorcontrol.html", "");
	menu.addSubItem("productsid", "Safety Switches", "Safety Switches",  "\switches.html", "");
	menu.addSubItem("productsid", "Disconnects", "Disconnects",  "\disconnects.html", "");
	menu.addSubItem("productsid", "Contactors", "Contactors",  "\contactors.html", "");
    menu.addSubItem("productsid", "Transformers", "Transformers",  "\ transformers.html", "");
   
	menu.addSubItem("Manufacturesid", "FPE/American", "FPE/American",  "\ federal-pacific-circuit-breakers.html", "");
    menu.addSubItem("Manufacturesid", "General Eletric", "General Electric",  "\general-electric-circuit-breakers.html", "");
    menu.addSubItem("Manufacturesid", "Siemans/ITE", "Siemans/ITE",  "\siemens-circuit-breakers.html", "");
    menu.addSubItem("Manufacturesid", "Square D", "Square D",  "\square-d-circuit-breakers.html", "");
    menu.addSubItem("Manufacturesid", "Cutler Hammer / Westinghouse", "Cutler Hammer / Westinghouse",  "\westinghouse-circuit-breakers.html", "");
    menu.addSubItem("Manufacturesid", "Zinsco", "Zinsco",  "\zinsco.html", "");
    menu.addSubItem("Manufacturesid", "Other", "Other",  "\other.html", "");

	menu.addSubItem("customerserviceid", "Contact Us", "Contact Us",  "\contact.html", "");
	menu.addSubItem("customerserviceid", "Quote", "Quote",  "\quote.html", "");
	menu.addSubItem("customerserviceid", "Privacy Policy", "Privacy Policy", "privacy.html", "");
	menu.addSubItem("customerserviceid", "Warranty", "Warranty",  "warranty.html", "");

	
	menu.showMenu();
}
