//Top Nav bar script v2.1- menu.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();

	menu.addItem("Home", "Home", "Home",  "index.asp", null);
	menu.addItem("Products", "Products", "Products",  null, null);
	menu.addItem("Where", "Where to buy", "Where to buy", "FindReseller.asp", null);
	menu.addItem("Support", "Support", "Support", null, null);
	menu.addItem("Company", "Company Info", "Company Info",  null, null);
	menu.addItem("OnlineStore", "Online Store", "Online Store", "http://shop.inoi.com", null);

	menu.addSubItem("Products", ">  Storage Device", " Storage",  "StorageDevice.asp", "");
	menu.addSubItem("Products", ">  Digital Audio & Video", "Digital Audio & Video",  "DigitalAudioandVideo.asp", "");
	
	menu.addSubItem("Support", ">  Downloads", "Downloads",  "DriverDownloads.asp", "");
	menu.addSubItem("Support", ">  Support", "Support",  "support_form.asp", "");
	menu.addSubItem("Support", ">  RMA Request", "RMA Request",  "rma_form.asp", "");
	menu.addSubItem("Support", ">  Product Registration", "Product Registration",  "ProductRegistration.asp", "");
	menu.addSubItem("Support", ">  FAQ", "FAQ",  "faq.asp", "");
	
	menu.addSubItem("Company", ">  About Us", "About Us",  "aboutus.asp", "");
    menu.addSubItem("Company", ">  Press Center", "Press Center",  "PressCenter.asp", "");
	menu.addSubItem("Company", ">  Contact Us", "Contact Us",  "ContactUs.asp", "");


	menu.showMenu();
}