//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Kryloff Technologies Home Page", "welcome.html", null);
	menu.addItem("prodid", "Products", "About Kryloff Software Products",  null, null);
	menu.addItem("loadid", "Download", "Download Kryloff Products",  null, null);
	menu.addItem("ordeid", "Purchase", "Order Kryloff Products",  null, null);
	menu.addItem("techid", "Add-ons", "Additional Software Components",  null, null);
	menu.addItem("compid", "Company", "News and Latest Events",  null, null);

	menu.addSubItem("prodid", "Subject Search Spider", "Performs comprehensive Web searches",  "spider.htm");
	menu.addSubItem("prodid", "Subject Search Scanner", "Searches in local and network drives including nested archives",  "scanner.htm");
	menu.addSubItem("prodid", "SSScanner CD Edition", "Searches in files you distribute on CD, DVD and flash drives",  "scanner.htm");
	menu.addSubItem("prodid", "Subject Search Pad", "Finds similar files, builds document summaries and performs fuzzy-logic searches",  "sspad.htm");
	menu.addSubItem("prodid", "Subject Search Summarizer", "Builds text summaries and translates files between languages",  "summarizer.htm");
	menu.addSubItem("prodid", "Subject Search Siter", "Builds maps of, translates, and retrieves useful information from Web sites",  "siter.htm");
	menu.addSubItem("prodid", "Email Extractor", "Retrieves e-mail addresses from Web sites and places them into databases",  "siter.htm");
	menu.addSubItem("prodid", "Subject Search Sleuth", "Searches in your company document collections; provides API for software developers",  "dkreadme.htm");
	menu.addSubItem("prodid", "Subject Search Server", "Adds free search capabilities to your Web site",  "server.htm");
	menu.addSubItem("prodid", "KT Text Filters", "Text extraction components for software developers",  "filters.htm");
	menu.addSeparator("prodid");
	menu.addSubItem("prodid", "Free Stuff", "Utilities, updates, etc.",  "freestf.htm");

	menu.addSubItem("techid", "Custom & KT Text Filters", "Text Extraction Software Components", "filters.htm");
	menu.addSubItem("techid", "Multi-Language Support", "Language dictionaries for KT products", "langsupp.htm");

	menu.addSubItem("loadid", "Subject Search Spider", "Performs comprehensive Web searches", "spdownld.htm");
	menu.addSubItem("loadid", "Subject Search Scanner", "Searches in local and network drives including nested archives",  "scandown.htm");
	menu.addSubItem("loadid", "SSScanner CD Edition", "Searches in files you distribute on CD, DVD and flash drives",  "scandown.htm");
	menu.addSubItem("loadid", "Subject Search Pad", "Finds similar files, builds document summaries and performs fuzzy-logic searches",  "paddown.htm");
	menu.addSubItem("loadid", "Subject Search Summarizer", "Builds text summaries and translates files between languages",  "sumdown.htm");
	menu.addSubItem("loadid", "Subject Search Siter", "Builds maps of, translates, and retrieves useful information from Web sites",  "sitedown.htm");
	menu.addSubItem("loadid", "Email Extractor", "Retrieves e-mail addresses from Web sites and places them into databases",  "sitedown.htm");
	menu.addSubItem("loadid", "Subject Search Sleuth", "Searches in your company document collections; provides API for software developers", "sdkdownl.htm");
	menu.addSubItem("loadid", "Subject Search Server", "Adds free search capabilities to your Web site",  "download.htm#server");
	menu.addSubItem("loadid", "KT Text Filters", "Text extraction components for software developers",  "freestf.htm#util");
        menu.addSeparator("loadid");
	menu.addSubItem("loadid", "Download area for all products", "Select and download a particular KT product", "download.htm");

	menu.addSubItem("ordeid", "Kryloff Online Store", "Order Kryloff products online", "store/index.htm");
	menu.addSeparator("ordeid");
	menu.addSubItem("ordeid", "Special Offers", "Bundles and discounts",  "offers.htm");

	menu.addSubItem("compid", "What's new", "Latest Releases and Updates", "news.htm");
	menu.addSubItem("compid", "What people think of us", "Customer Quotes & Press Reviews", "reviews.htm");
	menu.addSubItem("compid", "Contact us", "Feedback & Technical Support", "feedback.htm");
	menu.addSeparator("compid");
	menu.addSubItem("compid", "About the company", "More information about Kryloff Technologies", "aboutkt.htm");

	menu.showMenu();
}