//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("nescoid", "Nesco", "Nesco Manufacturing",  null, null);
	menu.addItem("catalogid", "Catalog", "Catalog Pages",  null, null);
	menu.addItem("installid", "Installation", "Installation Help", null, null);
	menu.addItem("autocadid", "Drawings", "AutoCad Drawings",  null, null);
	menu.addItem("projectid", "Project Gallery", "Project Gallery",  null, null);
	menu.addItem("customid", "Custom Gallery", "Custom Gallery",  null, null);

	menu.addSubItem("nescoid", "Nesco Manufacturing", "Nesco Manufacturing",  "index.htm", "");
	menu.addSubItem("nescoid", "Contact Us", "Contact Us",  "contactus.htm", "");
	menu.addSubItem("nescoid", "History", "History",  "History.htm", "");
        menu.addSubItem("nescoid", "Nesco Links", "Nesco Links",  "links.htm", "");
	menu.addSubItem("nescoid", "Nesco News", "Nesco News",  "news.htm", "");
	menu.addSubItem("nescoid", "Terms", "Terms",  "terms.htm", "");
	menu.addSubItem("nescoid", "Trouble-shooting", "Trouble-shooting",  "troubleshoot.htm", "");
	menu.addSubItem("nescoid", "Vision", "Vision",  "vision.htm", "");
	menu.addSubItem("nescoid", "Warranty", "Warranty",  "warranty.htm", "");

	menu.addSubItem("catalogid", "Arabesque Windows", "Arabesque Windows",  "cat_abwindows.htm", "");
	menu.addSubItem("catalogid", "Balusters", "Balusters",  "cat_bal.htm", "");
	menu.addSubItem("catalogid", "Beams & Vegas", "Beams & Vegas",  "cat_beams.htm", "");
	menu.addSubItem("catalogid", "Columns", "Columns",  "cat_column.htm", "");
	menu.addSubItem("catalogid", "Corbels", "Corbels",  "cat_corbel.htm", "");
	menu.addSubItem("catalogid", "Decorative Vents", "Decorative Vents",  "cat_decvent.htm", "");
	menu.addSubItem("catalogid", "Molding & cornice", "Molding & cornice",  "cat_molding.htm", "");
        menu.addSubItem("catalogid", "Rafter Tails", "Rafter Tails",  "cat_rafttail.htm", "");
	menu.addSubItem("catalogid", "Scuppers", "Scuppers",  "cat_scuppers.htm", "");
	menu.addSubItem("catalogid", "Shutters", "Shutters",  "cat_shutter.htm", "");
	menu.addSubItem("catalogid", "Tile Vents & Screens", "Tile Vents & Screens",  "cat_tile.htm", "");
	menu.addSubItem("catalogid", "Window Trim", "Window Trim",  "cat_trim.htm", "");

	menu.addSubItem("installid", "Arabesque Window", "Arabesque Window",  "installarab.htm", "");
	menu.addSubItem("installid", "Corbels", "Corbels",  "installcorbel.htm", "");	
	menu.addSubItem("installid", "Full Column", "Full Column",  "installfullcol.htm", "");			menu.addSubItem("installid", "Full Split Column", "Full Split Column",  "installfullsplitcol.htm", "");	
	menu.addSubItem("installid", "Install Index", "Installation Index",  "installinfoindex.htm", "");
	menu.addSubItem("installid", "Product Install", "Product Installation",  "installnesco.htm", "");
	menu.addSubItem("installid", "Qick Fact Sheet", "Quick Fact Sheet",  "installnesquickfac.htm", "");
	menu.addSubItem("installid", "Repair & Maintenance", "Repair & Maintenance",  "installnescorepair.htm", "");	
	menu.addSubItem("installid", "Rough Sawn Header", "Rough Sawn Header",  "installroughsawn.htm", "");
	menu.addSubItem("installid", "Rough Sawn U", "Rough Sawn U",  "installroughsawnU.htm", "");	
	menu.addSubItem("installid", "Rafter Tails", "Rafter Tails",  "installraftertail.htm", "");	
	menu.addSubItem("installid", "Scuppers", "Scuppers",  "installscupper.htm", "");
	menu.addSubItem("installid", "Shutters", "Shutters",  "installshutter.htm", "");	
	menu.addSubItem("installid", "Stucco", "Stucco",  "installstuccoa.htm", "");
	menu.addSubItem("installid", "Stucco II", "Stucco II",  "installstuccoII.htm", "");
	
	

	menu.addSubItem("autocadid", "Detailed Drawings", "Detailed Drawings", "termscad2.htm", "");
	menu.addSubItem("autocadid", "Symbol Drawings", "Symbol Drawings", "termscad2.htm", "");
	
	menu.addSubItem("projectid", "Project Gallery", "Project Gallery", "project.htm", "");
	
	menu.addSubItem("customid", "Custom Gallery", "Custom Galley", "custom.htm", "");
	

	menu.showMenu();
}