//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("index", "HOME", "HOME",  "index.html", null);
	menu.addItem("webmasterid", "ABOUT US", "ABOUT US",  null, "about_profile.html");
	menu.addItem("products", "PRODUCTS/SERVICES", "PRODUCTS/SERVICES",  null, "products_outbound.html");
	menu.addItem("integrated", "INTEGRATED SOLUTIONS", "INTEGRATED SOLUTIONS",  null, "integrated_solutions.html");
        menu.addItem("tailored", "UNIQUE MESSAGING SOLUTIONS", "UNIQUE MESSAGING SOLUTIONS",  null, "unique_solutions_accelerated.html");
	//menu.addItem("partnership", "PARTNERSHIPS", "PARTNERSHIPS",  null, null);
	//menu.addItem("login", "CUSTOMER LOGIN", "CUSTOMER LOGIN",  null, null);

	menu.addSubItem("webmasterid", "Company Profile", "Company Profile",  "about_profile.html", "");
	menu.addSubItem("webmasterid", "Management Team", "Management Team",  "about_management.html", "");
	menu.addSubItem("webmasterid", "Worldwide Locations", "Worldwide Locations",  "about_locations.html", "");
	menu.addSubItem("webmasterid", "Contact Us", "Contact Us",  "contact_us.html", "");
	menu.addSubItem("webmasterid", "Privacy Policy", "Privacy Policy",  "about_pivacy.html", "");
	menu.addSubItem("webmasterid", "Anti-SPAM Policy", "Anti-SPAM Policy",  "about_spam.html", "");

	menu.addSubItem("products", "Outbound Messaging", "Outbound Messaging",  "products_outbound.html", "");
	menu.addSubItem("products", "Inbound Messaging", "Inbound Messaging",  "products_inbound.html", "");
	menu.addSubItem("products", "XpressFax", "XpressFax",  "products_xpress_fax.html", "");
	menu.addSubItem("products", "XpressMail", "XpressMail",  "products_xpress_mail.html", "");
	menu.addSubItem("products", "XpressVoice", "XpressVoice",  "products_xpress_voice.html", "");
	menu.addSubItem("products", "XpressSMS", "XpressSMS",  "products_xpress_sms_alerts.html", "");
	menu.addSubItem("products", "Telex", "Telex",  "products_telex_store.html", "");

	menu.addSubItem("integrated", "Production Messaging", "Production Messaging",  "integrated_solutions_ftp.html", "");
	menu.addSubItem("integrated", "Exchange", "Exchange",  "integrated_solutions_exchange.html", "");
	menu.addSubItem("integrated", "SAP", "SAP",  "integrated_solutions_sap.html", "");
	menu.addSubItem("integrated", "PeopleSoft", "PeopleSoft",  "integrated_solutions_soft.html", "");
	//menu.addSubItem("integrated", "MQSeries", "MQSeries",  "integrated_solutions_mq.html", "");
	//menu.addSubItem("integrated", "AS400", "AS400",  "integrated_solutions_as400.html", "");

	menu.addSubItem("tailored", "Accelerated Delivery", "Accelerated Delivery",  "unique_solutions_accelerated.html", "");
	menu.addSubItem("tailored", "Desktop Faxing", "Desktop Faxing",  "unique_solutions_desktop.html", "");
	menu.addSubItem("tailored", "Dynamic Creation", "Dynamic Creation",  "unique_solutions_dynamic.html", "");
	menu.addSubItem("tailored", "Customized Messaging Solutions", "Customized Messaging Solutions",  "unique_solutions_custom.html", "");
	menu.addSubItem("tailored", "HIPPA-Compliance", "HIPPA-Compliance",  "unique_solutions_hippa.html", "");
	menu.addSubItem("tailored", "Secure Messaging", "Secure Messaging",  "unique_solutions_secure.html", "");
	menu.addSubItem("tailored", "Intergated Messaging", "Intergated Messaging",  "unique_solutions_integrated.html", "");

	//menu.addSubItem("partnership", "SoundBite", "SoundBite",  "#", "");
	//menu.addSubItem("partnership", "Sterling Commerce", "Sterling Commerce",  "#", "");
	//menu.addSubItem("partnership", "DPII", "DPII", "#", "");
	//menu.addSubItem("partnership", "IPIS", "IPIS",  "#", "");

	//menu.addSubItem("login", "Unicom", "Unicom",  "#", "");
	//menu.addSubItem("login", "Telesend", "Telesend",  "#", "");
	//menu.addSubItem("login", "IVFS", "IVFS",  "#", "");
	//menu.addSubItem("login", "OneMail", "OneMail",  "#", "");

	menu.showMenu();
}