//Top Nav bar script v2.1

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("home", "Home", "Home", "products/index.html", null);
	menu.addItem("products", "Products", "Products", null, null);
	menu.addItem("about", "About MASELEC", "About MASELEC", "about.html", null);
	menu.addItem("downloads", "Downloads", "Downloads", "downloads.html", null);
	menu.addItem("links", "Links", "Links", null, null);

	menu.addSubItem("products", "MLA-3", "MLA-3",  "./products/mla-3/index.html", "home");
	menu.addSubItem("products", "MTC-2", "MTC-2",  "./products/mtc-2/index.html", "home");
	menu.addSubItem("products", "MEA-2", "MEA-2",  "./products/mea-2/index.html", "home");
	menu.addSubItem("products", "MLA-2", "MLA-2",  "./products/mla-2/index.html", "home");
	menu.addSubItem("products", "MMA-4", "MMA-4",  "./products/mma-4/index.html", "home");
	menu.addSubItem("products", "MPL-2", "MPL-2",  "./products/mpl-2/index.html", "home");
	menu.addSubItem("products", "MDS-2", "MDS-2",  "./products/mds-2/index.html", "home");
	menu.addSubItem("products", "MTC-6", "MTC-6",  "./products/mtc-6/index.html", "home");
	menu.addSubItem("products", "MDC-70", "MDC-70",  "./products/mdc-70/index.html", "_blank");
	menu.addSubItem("products", "MDC-80", "MDC-80",  "./products/mdc-80/index.html", "_blank");
	menu.addSubItem("products", "MXF-1", "MXF-1",  "./products/mxf-1/index.html", "_blank");

	menu.addSubItem("links", "Prism Sound", "Prism Sound",  "http://www.prismsound.com", "_blank");
	menu.addSubItem("links", "Asia", "Asia",  "asia.html", "_blank");
	menu.addSubItem("links", "Australia", "Australia",  "australia.html", "_blank");
	menu.addSubItem("links", "New Zealand/Pacific", "New Zealand/Pacific",  "newzealand.html", "_blank");
	menu.addSubItem("links", "Scandinavia", "Scandinavia",  "http://www.arva.se", "_blank");
	menu.addSubItem("links", "USA", "USA",  "usa.html", "_blank")
	menu.addSubItem("links", "Japan", "Japan",  "japan.html", "_blank")

	menu.showMenu();
}