//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("webmasterid", "Home", "Data Support Home page",  "index.html", null);
	menu.addItem("newsid", "Products", "",  null, null);
	menu.addItem("freedownloadid", "Technical", "",  null, null);
	menu.addItem("searchengineid", "Downloads", "",  null, null);
	menu.addItem("miscid", "Miscellaneous", "",  null, null);
	menu.addItem("contact", "Contact Us", "",  null, null);


	menu.addSubItem("webmasterid", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/", "");
	menu.addSubItem("webmasterid", "JavaScript Kit", "JavaScript Kit",  "http://www.javascriptkit.com/", "");
	menu.addSubItem("webmasterid", "Web Review", "Web Review",  "http://www.webreview.com/", "");
	menu.addSubItem("webmasterid", "Freewarejava.com", "Freewarejava.com",  "http://www.freewarejava.com/", "_blank");
	menu.addSubItem("webmasterid", "Web Monkey", "Web Monkey",  "http://www.webmonkey.com/", "_blank");

	menu.addSubItem("newsid", "EFT for Accpac", "",  "eftadvantage.html", "");
	menu.addSubItem("newsid", "Debit Orders for Accpac", "",  "debitorders.html", "");
	menu.addSubItem("newsid", "Accpac", "",  "accpac.html", "");
	menu.addSubItem("newsid", "Peresoft Cashbook", "",  "cashbook.html", "");
	menu.addSubItem("newsid", "Service Manager", "",  "technisoft.html", "");
		
	menu.addSubItem("freedownloadid", "Activations", "Activate your product here",  "activations.html", "");
	menu.addSubItem("freedownloadid", "Errors & FAQ", "Error messages, FAQ & common solutions",  "errors.html", "");
	menu.addSubItem("freedownloadid", "Archives", "Older version notes & addendums etc",  "archives.html", "");

	menu.addSubItem("searchengineid", "Products, Reports etc", "Utilities, patches etc",  "downloads.html", "");
	menu.addSubItem("searchengineid", "EFT & DO Manuals", "",  "downloadmanuals.html", "");
	
	menu.addSubItem("miscid", "Product Resources", "Advertising Brochures etc",  "resources.html", "");
	menu.addSubItem("miscid", "Useful stuff", "Accpac links and other useful things",  "usefullinks.html", "");
    menu.addSubItem("miscid", "Price list", "",  "pricelist.html", "");
    menu.addSubItem("miscid", "Accolades", "",  "accolades.html", "");
	menu.addSubItem("miscid", "Disclaimer", "",  "disclaimer.html", "");
	menu.addSubItem("contact", "About us", "Meet the team",  "aboutus.html", "");
	menu.addSubItem("contact", "Technical Support", "",  "teccontact.html", "");
	menu.addSubItem("contact", "Product Info", "",  "teccontact.html", "");
	menu.addSubItem("contact", "Address and Map", "Directions",  "postcontact.html", "");


	menu.showMenu();
}
