var TITEMS = [ 
 ["Welcome to Advanced TIFF Editor Help", null, "1",
  ["Welcome", "source/welcome.htm", "11"],
  ["Introduction", "source/introduction.htm", "11"],
  ["Supported Image File formats", "source/supportedimagefileformats.htm", "11"],
  ["Installing the Advanced TIFF Editor", "source/installingtheablefaxtifvi.htm", "11"],
  ["Using the Advanced TIFF Editor", "source/usingtheablefaxtifview.htm", "1",
   ["Modes", "source/modes.htm", "11"],
   ["Quick Start Hot Keys", "source/quickstarthotkeys.htm", "11"],
   ["File Management", "source/filemanagement.htm", "1",
    ["Opening Files", "source/openingfiles.htm", "11"],
    ["Importing Text to Graphics", "source/importingtexttographics.htm", "11"],
    ["Loading Files from URL", "source/loadingfilesfromurl.htm", "11"],
    ["Merge Files", "source/mergefiles.htm", "11"],
    ["Files List", "source/fileslist.htm", "11"],
    ["Saving Files", "source/savingfiles.htm", "1",
     ["Advanced", "source/advanced.htm", "11"]
    ],
    ["Scanning", "source/scanning.htm", "11"],
    ["Getting information about a file", "source/gettinginformationaboutafi.htm", "11"],
    ["TIFF tags", "source/tifftags.htm", "11"],
    ["Printing", "source/printing.htm", "1",
     ["Print Setup", "source/printsetup.htm", "11"]
    ],
    ["FAX sending", "source/faxsending.htm", "11"],
    ["Image associations", "source/imageassociations.htm", "11"],
    ["E-mailing Files", "source/e_mailingfiles.htm", "11"]
   ],
   ["Displaying Images", "source/displayingimages.htm", "11"],
   ["Viewing Multipage files", "source/viewingmultipagefiles.htm", "11"],
   ["Rotating and Flipping Images", "source/rotatingandflippingimages.htm", "11"],
   ["Zooming", "source/zooming.htm", "11"],
   ["Page manipulations", "source/pagemanipulations.htm", "11"],
   ["Image Processing", "source/imageprocessing.htm", "11"],
   ["Batch Processing", "source/batchprocessing.htm", "11"],
   ["Drawing", "source/drawing.htm", "11"],
   ["Selection tools", "source/selectiontools.htm", "11"],
   ["Annotation", "source/annotation.htm", "1",
    ["Annotation search in the files", "source/annotationsearchinthefiles.htm", "11"]
   ],
   ["Measurement", "source/measurement.htm", "11"],
   ["Users Settings", "source/usersettings.htm", "11"]
  ],
  ["Toolbars", "source/toolbars.htm", "11"],
  ["Command line parameters", "source/commandlineparameters.htm", "11"],
  ["How to Buy", "source/howtobuy.htm", "11"],
  ["Technical Support", "source/technicalsupport.htm", "11"],
  ["Additional languages", "source/additional_languages.htm", "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;
}

