function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("productinfoid", "Product Information", "Product Information",  null, null);
	menu.addItem("downloadid", "Free Downloads", "Download here",  null, null);
	menu.addItem("registerid", "Purchase", "Register here",  null, null);
	menu.addItem("miscid", "Reviews, Awards & More", "Misc.",  null, null);
	menu.addItem("supportid", "Support", "Support",  null, null);
	menu.addItem("searchengineid", "Search", "Search",  null, null);
	menu.addItem("homeid", "Home", "Home",  null, null);
	

//!information page!//

menu.addSubItem("productinfoid", "What does it do?", "What can you do with FolderMatch?",  
"fminfo.htm#what");
	menu.addSubItem("productinfoid", "Who needs FolderMatch?", "Do you need FolderMatch?",  "fminfo.htm#who");
        menu.addSubItem("productinfoid", "Version History", "Version History",  "fmhistory.htm");
	menu.addSubItem("productinfoid", "Current Features", "Current Features",  "fminfo.htm#features");
        menu.addSubItem("productinfoid", "Duplicate File Finder", "See the results of the speed performance test",  "fmduplicatechart.htm");
	menu.addSubItem("productinfoid", "Screen Shots", "Take a peek!",  "fmpeek.htm");
	menu.addSubItem("productinfoid", "View a Demo", "View a Demo",  "fmdemo.htm");
	menu.addSubItem("productinfoid", "Corporate Users", "Corporate Users", "fmusers.htm");
	menu.addSubItem("productinfoid", "Customer Quotes", "See what our users have said",  "fmquotes.htm");
        menu.addSubItem("productinfoid", "Reviews", "See what Software Reviewers have said",  "fmreviews.htm");
        
	
//!download page!//

	menu.addSubItem("downloadid", "Current Version", "Current Version",  "fmdownload.htm#current");
	menu.addSubItem("downloadid", "Installation instructions", "Installation Instructions", "fmdownload.htm#installation");
	menu.addSubItem("downloadid", "HTML Match Download", "HTML Match Download",  "http://www.htmlmatch.com/hmdownload.htm");
	menu.addSubItem("downloadid", "FolderClone Download", "FolderClone Download",  "http://www.folderclone.com/fcdownload.htm");
	menu.addSubItem("downloadid", "FolderMatch Download", "FolderMatch Download",  "http://www.foldermatch.com/fmdownload.htm");
	menu.addSubItem("downloadid", ".", ".",  "fmdownload.htm#installation");
	
	
	
//!Purchase page!//

	menu.addSubItem("registerid", "Pricing Schedule", "Pricing Schedule",  "fmregister.htm#price");
	menu.addSubItem("registerid", "International Currency Converter", "International Currency Converter",  "fmregister.htm#converter");
        menu.addSubItem("registerid", "Credit Card Purchases", "Phone, FAX or Online",  "fmregister.htm#Online");
	menu.addSubItem("registerid", "Register by Check", "Register by Check",  "fmregister.htm#check");
	menu.addSubItem("registerid", "Purchase Orders", "Purchase Orders",  "fmregister.htm#purchase orders");
	menu.addSubItem("registerid", "Resellers", "Resellers",  "http://www.saltybrine.com/resellers.htm");
      	menu.addSubItem("registerid", "License Agreement", "License Agreement",  "fmagreement.htm");
	menu.addSubItem("registerid", ".", ".",  "fmagreement.htm");
	
	
//!Support!//
	menu.addSubItem("supportid", "Frequently Asked Questions", "Frequently Asked Questions",  "fmfaq.htm");
	menu.addSubItem("supportid", "Known Bugs and Fixes", "Known Bugs and Fixes",  "fmfaq.htm");
	menu.addSubItem("supportid", "Technical Support","Technical Support",  "http://saltybrine.com/spt.htm");
	menu.addSubItem("supportid", "Contact Us", "eMail Us",  "mailto:support@saltybrine.com");
	menu.addSubItem("supportid", ".", ".",  "mailto:support@saltybrine.com");


//!misc!//
	menu.addSubItem("miscid", "Awards", "Awards",  "fmawards.htm");
	menu.addSubItem("miscid", "Reviews", "Reviews",  "fmreviews.htm");	
	menu.addSubItem("miscid", "Client Hall of Fame", "Client Hall of Fame",  "fmusers.htm");
	menu.addSubItem("miscid", "Customer Quotes", "See what others are saying",  "fmquotes.htm");
	menu.addSubItem("miscid", "Press Release", "Press Release",  "fmpressrelease.htm");
	menu.addSubItem("miscid", "View a Demo", "View a Demo",  "fmdemo.htm");
	menu.addSubItem("miscid", "HelpFile for Life", "HelpFile for Life",  "help4life.htm");
	menu.addSubItem("miscid", ".", ".", "HelpFile for Life",  "help4life.htm");
	
	
//!Search!//
	menu.addSubItem("searchengineid", "Search Our Site", "Search Our Site",  "fmnews.htm#Search");
	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com/");
	menu.addSubItem("searchengineid", "Infoseek", "Infoseek",  "http://www.infoseek.com/");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com");
	

//!Home!//
	menu.addSubItem("homeid", "Home", "Home",  "index.htm");
	menu.addSubItem("homeid", "Salty Brine Software", "Salty Brine Software",  "http://www.SaltyBrine.com");
        menu.addSubItem("homeid", "FolderClone", "FolderClone",  "http://www.folderclone.com");
	menu.addSubItem("homeid", "HTML Match", "HTML Match",  "http://www.htmlmatch.com");
	menu.showMenu();}