var TITEMS = [ 
 ["Welcome", "source/intro.html", "11"],
 ["Installation", "source/installation.html", "11"],
 ["Client/Server Installation", "source/clientserver.html", "11"],
 ["Starting and Using ScreenPrint", null, "1",
  ["Quick Start Basics", "source/quickstart.html", "11"],
  ["Program Startup", "source/startup.html", "11"],
  ["Using the Print Screen Key", "source/usingpskey.html", "11"],
  ["Using Alternate Hotkeys", "source/althotkeys.html", "11"],
  ["Capture Completion Indicator", "source/captureindicator.html", "11"],
  ["Minimizing, Restoring and Exiting", "source/minimizing.html", "11"]
 ],
 ["Main Window", null, "1",
  ["Overview", "source/mainwindowoverview.html", "11"],
  ["Selecting a Capture Method", "source/selectprintcapturemethod.html", "1",
   ["Full Screen", "source/fullscreen.html", "11"],
   ["Active Window", "source/activewin.html", "11"],
   ["Active Window Client Area", "source/activewinclient.html", "11"],
   ["User-Defined Rectangle/Circle", "source/userdefined.html", "11"],
   ["User-Defined with Repeat", "source/userdefinedrepeat.html", "11"],
   ["Mouse Selected Region", "source/mouseselectedregion.html", "11"],
   ["Full DOS Screen", "source/fulldosscreen.html", "1",
    ["DOS Capture Under XP", "source/xp-dos.html", "11"]
   ],
   ["Zoom Capture", "source/zoomcapture.html", "11"],
   ["SuperScroll", "source/superscroll.html", "11"]
  ],
  ["Selecting Your Ouptut", "source/selectprintcaptureorboth.html", "11"],
  ["Auto Recover", "source/autorecover.html", "11"],
  ["Selecting a Graphic Format for Captured Images", "source/selectgraphicformat.html", "11"],
  ["Selecting and Viewing Captured Images", "source/selectingimages.html", "11"],
  ["Saving Images", "source/savingimages.html", "1",
   ["Save As", "source/saveas.html", "11"],
   ["Quick Save", "source/quicksave.html", "11"],
   ["Save to Catalog", "source/savetocatalog.html", "11"],
   ["Saving Images in JPEG Format", "source/savingjpeg.html", "11"]
  ],
  ["Deleting Images", "source/deletingimages.html", "11"],
  ["Printing Images", "source/printingimages.html", "11"],
  ["Emailing Images", "source/emailing.html", "11"],
  ["Copying Images", "source/copyingimages.html", "11"],
  ["Pasting Images in MS Word and PowerPoint", "source/pastemsword.html", "11"],
  ["AutoCapture Timer", "source/autocapture.html", "11"],
  ["Clearing the Clipboard", "source/clearclipboard.html", "11"]
 ],
 ["Setup and Configuration", null, "1",
  ["Auto-Memory Settings", "source/automemory.html", "11"],
  ["ScreenPrint Setup", "source/spsetup.html", "1",
   ["Print Options", "source/printoptions.html", "11"],
   ["Print and Capture Options", "source/printcaptureoptions.html", "11"],
   ["Start and Exit Options", "source/startexitoptions.html", "11"],
   ["Image Editor Options", "source/editoroptions.html", "11"],
   ["Default Image Save Folder", "source/defaultimagesave.html", "11"],
   ["Configuration Folder", "source/configfolder.html", "11"],
   ["Email Message Settings", "source/messagesettings.html", "11"],
   ["Saving Your Configuration", "source/saveconfig.html", "11"],
   ["Password Protection", null, "1",
    ["Overview", "source/passwordprotect.html", "11"],
    ["Password Protection Setup", "source/passwordprotectsetup.html", "11"],
    ["Enabling Password Protection", "source/passwordenable.html", "11"],
    ["Disabling Password Protection", "source/passworddisable.html", "11"],
    ["Changing Your Password", "source/passwordchanging.html", "11"],
    ["If You Forget Your Password", "source/passwordforget.html", "11"]
   ],
   ["Printer Setup", "source/printersetup.html", "11"]
  ]
 ],
 ["Profiles", "source/profiles.html", "11"],
 ["Export to PDF", "source/export2pdf.html", "11"],
 ["Thumbnail Viewer", null, "1",
  ["Oveview", "source/thumboverview.html", "11"],
  ["Opening the Thumbnail Viewer", "source/thumbopen.html", "11"],
  ["Selecting/Working with Thumbnails", "source/thumbselect.html", "11"]
 ],
 ["Weblink Image Cataloger", null, "1",
  ["Overview", "source/catalogoverview.html", "11"],
  ["Rules for Cataloging Images", "source/catalogrules.html", "11"],
  ["Creating a Catalog", "source/catalogcreate.html", "11"],
  ["Saving Images to a Catalog", "source/catalogsavingimages.html", "11"],
  ["Opening/Closing a Catalog", "source/catalogopen.html", "11"],
  ["Removing Images from a Catalog", "source/catalogremoveimages.html", "11"],
  ["Moving Images between Catalogs", "source/catalogmoveimages.html", "11"],
  ["Moving Images Saved in the Current Session into a Catalog", "source/catalogmoveimagescurrentsession.html", "11"],
  ["Deleting a Catalog", "source/catalogdelete.html", "11"],
  ["Renaming a Catalog", "source/catalogrename.html", "11"],
  ["Importing Images into a Catalog", "source/catalogimport.html", "11"],
  ["Linking Images to URLs", "source/linkingurloverview.html", "11"],
  ["Saving Web Images as Visual Bookmarks", "source/catalogsaveasbookmark.html", "11"],
  ["Visiting an Image’s Linked URL", "source/linkingurlgoing.html", "11"],
  ["Adding Notes to Web Images", "source/notesadding.html", "11"],
  ["Viewing/Editing an Attached Note", "source/notesviewing.html", "11"]
 ],
 ["Image Editor", null, "1",
  ["Overview", "source/editoroverview.html", "11"],
  ["Toolbar Icons", "source/editortoobarbuttons.html", "11"],
  ["Menu Bar Functions", "source/editormenubar.html", "11"],
  ["Special Effects", "source/editorspecialeffects.html", "11"],
  ["Batch Conversion", "source/batchconversion.html", "11"]
 ],
 ["Technical Support", "source/techsupport.html", "11"],
 ["Purchasing/Volume License Quotes", "source/purchase.html", "11"],
 ["Copyright and Trademark Notice", "source/copyright.html", "11"]
];


var FITEMS = arr_flatten(TITEMS);

function arr_flatten (x) {
   var y = []; if (x == null) return y;
   for (var i=0; i<x.length; i++) {
      if (typeof(x[i]) == "object") {
         var flat = arr_flatten(x[i]);
         for (var j=0; j<flat.length; j++)
             y[y.length]=flat[j];
      } else {
         if ((i%3==0))
          y[y.length]=x[i+1];
      }
   }
   return y;
}


