//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",  null, null);
	menu.addItem("doorsid", "Doors & Frames", "Doors & Frames",  null, null);
	menu.addItem("hardwareid", "Contract Hardware", "Contract Hardware",  null, null);
	menu.addItem("otherproductsid", "Other Products", "Other Products",  null, null);
	menu.addItem("previousprojectsid", "Previous Projects", "Previous Projects",  null, null);
	menu.addItem("contactusid", "Contact Us", "Contact Us",  null, null);
	
	
	menu.addSubItem("homeid", "Home", "Home",  "main.html", "mainFrame");
		
	menu.addSubItem("doorsid", "Architectural Wood Doors", "Architectural Wood Doors",  "wooddoors.html", "mainFrame");
	menu.addSubItem("doorsid", "Hollow Metal Doors & Frames", "Hollow Metal Doors & Frames",  "hollowmetal.html", "mainFrame");

	menu.addSubItem("hardwareid", "Locks", "Locks",  "locks.html", "mainFrame");
	menu.addSubItem("hardwareid", "Closures & Handicap Openers", "Closures & Handicap Openers",  "closers.html", "mainFrame");
	menu.addSubItem("hardwareid", "Hinges & Continuous Hinges", "Hinges & Continuous Hinges",  "hinges.html", "mainFrame");
	menu.addSubItem("hardwareid", "Weatherstripping & Thresholds", "Weatherstripping & Thresholds",  "weather.html", "mainFrame");


	menu.addSubItem("otherproductsid", "Exit Devices", "Exit Devices",  "exit.html", "mainFrame");
	menu.addSubItem("otherproductsid", "Electronic & Security Hardware", "Electronic & Security Hardware",  "electric_security.html", "mainFrame");
	menu.addSubItem("otherproductsid", "Miscellaneous Hardware & Flat Goods", "Miscellaneous Hardware & Flat Goods", "flatgoods.html", "mainFrame");
	
	menu.addSubItem("previousprojectsid", "Previous Projects", "Previous Projects",  "previous_projects.html", "mainFrame");

	menu.addSubItem("contactusid", "Contact Us", "Contact Us",  "contact_us.html", "mainFrame");




	menu.showMenu();
}