//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", "../index.html", null);
	menu.addItem("productsid", "Products", "Products",  null, null);
	menu.addItem("orderid", "Order", "Order",  null, null);
	menu.addItem("downloadid", "Download", "Download", "../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", "../products/products.htm", "");
	menu.addSubItem("productsid", "Website Templates", "Website Templates", "../templates/template_library.htm", "");
	menu.addSubItem("productsid", "Reference Books", "Reference Books", "../support/reference_library.htm", "");
	menu.addSubItem("productsid", "Resellers", "Resellers", "../products/resellers.htm", "");
	menu.addSubItem("productsid", "Reviews", "Reviews", "../products/reviews.htm", "");
	
	menu.addSubItem("orderid", "Order Pro 2000", "Order Pro 2000", "../orders/orders.htm", "");
	menu.addSubItem("orderid", "Order Website Templates", "Order Website Templates", "../templates/template_library.htm", "");
	menu.addSubItem("orderid", "Order Reference Books", "Reference Library", "../support/reference_library.htm", "");
	
	menu.addSubItem("downloadid", "Download", "Download", "../downloads/downloadrequest.htm", "");
	
	menu.addSubItem("supportid", "Knowledgebase", "Knowledgebase", "../support/support.htm", "");
	menu.addSubItem("supportid", "Reference Library", "Reference Library", "../support/reference_library.htm", "");
	menu.addSubItem("supportid", "Contact Support", "Contact Support", "../support/pro2000_support.htm", "");	
	
	menu.addSubItem("companyid", "Meet BNSW", "Meet BNSW", "../company/bnsw_team.htm", "");
	menu.addSubItem("companyid", "About BNSW", "About BNSW", "../company/company.htm", "");
	menu.addSubItem("companyid", "Contact BNSW", "Contact BNSW", "../company/contact_bnsw.htm", "");
	menu.addSubItem("companyid", "BNSW History", "BNSW History", "../company/bnsw_history.htm", "");
	menu.addSubItem("companyid", "BNSW Founder", "BNSW Founder", "../company/bnsw_founder.htm", "");
	
	menu.showMenu();
}