//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("homeid", "Home", "Home",  "http://www.fescfire.com/index.htm", null);
	menu.addItem("contactusid", "Contact Us", "Contact Us",  "http://www.fescfire.com/contact_us.htm", null);
	menu.addItem("productsid", "Services/Products", "Services/Products",  null, null);
	menu.addItem("licensesid", "Licenses/Affiliations", "Licenses/Affiliations",  "http://www.fescfire.com/licenses_affiliations.htm", null);
	menu.addItem("referencesid", "References", "References",  "http://www.fescfire.com/references.htm", null);
	menu.addItem("jobopportid", "Job Opportunities", "Job Opportunities",  "http://www.fescfire.com/job_opt.htm", null);

	menu.addSubItem("productsid", "Fire Systems", "Fire Systems",  "http://www.fescfire.com/fire_systems.htm", "");
	menu.addSubItem("productsid", "Portable Fire Extinguishers", "Portable Fire Extinguishers",  "http://www.fescfire.com/portable_fire_extinguishers.htm", "");
	menu.addSubItem("productsid", "Sprinklers/Alarms", "Sprinklers/Alarms",  "http://www.fescfire.com/sprinklers_alarms.htm", "");
	menu.addSubItem("productsid", "Steam Cleaning", "Steam Cleaning",  "http://www.fescfire.com/steam_cleaning.htm", "");
	
	
	menu.showMenu();
}