//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.html

// For Directories one level down

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("webmasterid", "Home", "Home", "./main/index.html", null);
	menu.addItem("productsid", "Products", "Products",  null, null);
	menu.addItem("orderid", "Order", "Order",  null, null);
	menu.addItem("downloadid", "Download", "Download", "./main/downloads/downloadrequest.htm", null);
	menu.addItem("supportid", "Support", "Support",  null, null);
	menu.addItem("companyid", "Company", "Company",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home", "../index.html", "");
	
	menu.addSubItem("productsid", "Pro 2000", "Pro 2000", "./main/products/products.htm", "");
	menu.addSubItem("productsid", "Website Templates", "Website Templates", "./main/templates/template_library.htm", "");
	menu.addSubItem("productsid", "Reference Books", "Reference Books", "./main/support/reference_library.htm", "");
	menu.addSubItem("productsid", "Resellers", "Resellers", "./main/products/resellers.htm", "");
	menu.addSubItem("productsid", "Reviews", "Reviews", "./main/products/reviews.htm", "");
	
	menu.addSubItem("orderid", "Order Pro 2000", "Order Pro 2000", "./main/orders/orders.htm", "");
	menu.addSubItem("orderid", "Order Website Templates", "Order Website Templates", "./main/templates/template_library.htm", "");
	menu.addSubItem("orderid", "Order Reference Books", "Reference Library", "./main/support/reference_library.htm", "");
	
	menu.addSubItem("downloadid", "Download", "Download", "./main/downloads/downloadrequest.htm", "");
	
	menu.addSubItem("supportid", "Knowledgebase", "Knowledgebase", "./main/support/support.htm", "");
	menu.addSubItem("supportid", "Reference Library", "Reference Library", "./main/support/reference_library.htm", "");
	menu.addSubItem("supportid", "Contact Support", "Contact Support", "./main/support/pro2000_support.htm", "");	
	
	menu.addSubItem("companyid", "Meet BNSW", "Meet BNSW", "./main/company/bnsw_team.htm", "");
	menu.addSubItem("companyid", "About BNSW", "About BNSW", "./main/company/company.htm", "");
	menu.addSubItem("companyid", "Contact BNSW", "Contact BNSW", "./main/company/contact_bnsw.htm", "");
	menu.addSubItem("companyid", "BNSW History", "BNSW History", "./main/company/bnsw_history.htm", "");
	menu.addSubItem("companyid", "BNSW Founder", "BNSW Founder", "./main/company/bnsw_founder.htm", "");
	
	menu.showMenu();
}
