var TITEMS = [ 
 ["Overview", "html/crys3rcn.htm", "11"],
 ["Setup Wizard", "html/wizard.htm", "11"],
 ["Quick start", "html/crys77jo.htm", "11"],
 ["Samples", "html/crys4y0j.htm", "11"],
 ["Translation Memory (TM)", null, "1",
  ["What is it?", "html/crys37qp.htm", "11"],
  ["Create a TM", "html/crys66el.htm", "11"],
  ["Open", "html/crys8j1p.htm", "11"],
  ["Reopen", "html/crys8j1p.htm#reopen_tm", "11"],
  ["Auto reopen of last TM", "html/crys8j1p.htm#auto_reopen_tm", "11"],
  ["Save", "html/crys8d4d.htm", "11"],
  ["Close", "html/crys8d4d.htm#close_tm", "11"],
  ["TMX Export", "html/tmx_export.htm", "11"],
  ["TMX Import", "html/tmx_import.htm", "11"],
  ["TM Details", null, "1",
   ["Main details", "html/crys9ier.htm", "11"],
   ["Pre-translation options", "html/tm_options_pre_translation.htm", "11"],
   ["Date formats", "html/crys5kdv.htm", "11"],
   ["Time formats", "html/crys8os3.htm", "11"],
   ["Number &amp; Currency formats", "html/crys1gc3.htm", "11"],
   ["Statistics", "html/tm_statistic.htm", "11"]
  ]
 ],
 ["Source Report", null, "1",
  ["What is it?", "html/crys2hdg.htm", "11"],
  ["Open", "html/crys2hdg.htm", "11"],
  ["Reopen", "html/crys2hdg.htm#reopen_source_report", "11"],
  ["Drag and drop", "html/crys2hdg.htm#drag_and_drop_report", "11"],
  ["Connecting to data-sources", "html/crys14tv.htm", "11"],
  ["Parameters", "html/crys77jn.htm", "11"],
  ["Import translated report", "html/crys3blg.htm", "11"],
  ["Workload Analysis", "html/crys38s3.htm", "11"],
  ["Preview options", "html/preview_options_source.htm", "11"],
  ["Design View", "html/design_view_source.htm", "11"],
  ["Close", "html/crys88vo.htm", "11"]
 ],
 ["Target Report", null, "1",
  ["What is it?", "html/crys2lbo.htm", "11"],
  ["Create a new target language", "html/crys2lbo.htm", "11"],
  ["Activate", "html/crys3n8l.htm", "11"],
  ["Deactivate", "html/crys3n8l.htm#deactivate", "11"],
  ["Delete a target language", "html/crys5y5h.htm", "11"],
  ["Preview options", "html/crys3mus.htm", "11"],
  ["Design View", "html/design_view.htm", "11"],
  ["Property filters", "html/property_filters.htm", "11"],
  ["How to translate", "html/crys6llx.htm", "11"],
  ["Multi-line translation editor", "html/crys7i9e.htm", "11"],
  ["Grid editor", "html/grid_editor.htm", "11"],
  ["Fonts and languages", "html/font_translation.htm", "11"],
  ["Truncated texts detection", "html/truncated_text.htm", "11"],
  ["Page size and margins localization", "html/page_localisation.htm", "11"],
  ["Right to left languages and mirroring", "html/layout_mirroring.htm", "11"],
  ["Resize and reposition objects", "html/translate_position_size.htm", "11"],
  ["Export to XLS", "html/xls_export.htm", "11"],
  ["Import an XLS file", "html/import_xls.htm", "11"],
  ["Copy and paste", "html/crys6m05.htm", "11"],
  ["Spell checker", "html/spell_checker.htm", "11"],
  ["Find translation", "html/crys7mpa.htm", "11"],
  ["Save", "html/crys39is.htm", "11"],
  ["Close", "html/crys8ctw.htm", "11"]
 ],
 ["Batch Processing", null, "1",
  ["Batch workload analysis", "html/batch_analysis.htm", "11"],
  ["Batch XLS Export", "html/batch_xls_export.htm", "11"],
  ["Batch XLS Import", "html/batch_xls_import.htm", "11"],
  ["Batch target reports rebuilding", "html/batch_rebuilding.htm", "11"]
 ],
 ["User Interface", null, "1",
  ["Overview", "html/crys28it.htm", "11"],
  ["Window handling", "html/crys6413.htm", "11"],
  ["Window menu", "html/crys93lh.htm", "11"],
  ["Help menu", "html/help_menu.htm", "11"],
  ["Main Toolbar", "html/crys2982.htm", "11"],
  ["Status and progress bar", "html/status_bar.htm", "11"],
  ["Database operation", "html/crys4g4u.htm", "11"]
 ],
 ["User Options", "html/user_options.htm", "11"],
 ["Report internationalisation guide", null, "1",
  ["Text size", "html/crys9wpx.htm", "11"],
  ["Box and line position", "html/crys6wby.htm", "11"],
  ["OS System default", "html/crys5gxg.htm", "11"],
  ["Resources for translators", "html/crys29gz.htm", "11"],
  ["Examples", "html/crys004u.htm", "11"],
  ["Distribution", "html/internationalisation_distribution.htm", "11"]
 ],
 ["Editions &amp; versions", null, "1",
  ["features comparison", "html/version_comparison.htm", "11"],
  ["scenarios &amp; usage", "html/edition_scenario.htm", "11"],
  ["version history", "html/version_history.htm", "11"]
 ],
 ["Crystal Report compatibility", "html/crystal_compatibility.htm", "11"],
 ["Supported languages", "html/install_font.htm", "11"],
 ["Known limitations", "html/crys0q5v.htm", "11"],
 ["Minimum requirements", "html/crys641f.htm", "11"],
 ["Support", "html/crys4a5w.htm", "11"],
 ["How to register", "html/crys11ki.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;
}


