var TITEMS = [ 
 ["Introduction", "source/introduction.html", "1",
  ["Table of Contents", "source/tableofcontents.html", "17"],
  ["Overview", "source/overview.html", "11"]
 ],
 ["Installation", "source/installation.html", "1",
  ["Installing Indigo", "source/installation.html", "11"],
  ["Licensing Indigo", "source/licensing.html", "11"]
 ],
 ["User Interface Layout", "source/layout.html", "1",
  ["Layout", "source/layout.html", "11"],
  ["Menus", "source/menus.html", "11"]
 ],
 ["Components &amp; Tools", "source/components.html", "1",
  ["Program Preferences", "source/preferences.html", "11"],
  ["Session Manager", "source/sessionmanager.html", "11"],
  ["Terminal Sessions", "source/terminalsessions.html", "11"],
  ["Web Sessions", "source/websessions.html", "11"],
  ["Quick Connect", "source/quickconnect.html", "11"],
  ["Data Converter", "source/dataconverter.html", "11"],
  ["Macros &amp; Macro Editor", "source/macros.html", "11"],
  ["Command Library", "source/commandlibrary.html", "11"],
  ["Variable Manager", "source/variablemanager.html", "11"],
  ["Command Repeater", "source/commandrepeater.html", "11"],
  ["ASCII Chart", "source/asciichart.html", "11"],
  ["Windows States", "source/windowstates.html", "11"],
  ["Dump Raw File", "source/dumprawfile.html", "11"]
 ],
 ["Terminal Session Tools", "source/terminalsessiontools.html", "1",
  ["Session Properties", "source/sessionproperties.html", "11"],
  ["Session Modes", "source/terminalmodes.html", "11"],
  ["Session Data Logging", "source/sessionlogging.html", "11"],
  ["Serial Pass Mode", "source/serialpassmode.html", "11"],
  ["Syntax Coloring / Editor", "source/syntaxcoloring.html", "11"],
  ["Export Session Data", "source/exportdata.html", "11"]
 ],
 ["Advanced Tools", "source/advanced.html", "1",
  ["Internal Commands", "source/internalcommands.html", "11"],
  ["Advanced Send Command", "source/advancedsendcommands.html", "11"],
  ["Custom Data Format / Editor", "source/customformat.html", "11"],
  ["Auto Send Commands", "source/autosendcommands.html", "11"],
  ["Global Session Template", "source/globalsession.html", "11"],
  ["Post Processing Script", "source/postprocessing.html", "11"],
  ["Command Scripting (VBScript)", "source/scripting.html", "11"],
  ["Scripting UI Library", "source/uilibrary.html", "11"]
 ],
 ["Web Updates", "source/webupdate.html", "1",
  ["Web Update", "source/webupdate.html", "15"]
 ],
 ["Deregistration", "source/deregistration.html", "1",
  ["Moving License to Another Computer", "source/deregistration.html", "11"]
 ],
 ["Contact", "source/contact.html", "1",
  ["Contact shadeBlue", "source/contact.html", "25"]
 ]
];


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;
}

