var TITEMS = [ 
 ["Introduction", null, "1",
  ["About CellPro", "about.htm", "11"],
  ["Overview of features", "overview_of_features.htm", "11"],
  ["Version history", "version_history.htm", "11"]
 ],
 ["Basics", null, "1",
  ["Calculations", "calculations.htm", "11"],
  ["Overview", "overview.htm", "11"],
  ["The structure of a spreadsheet", "spreadsheet.htm", "11"],
  ["Worksheet", "worksheet.htm", "11"],
  ["Workbook", "workbook.htm", "11"]
 ],
 ["Using CellPro", null, "1",
  ["User interface", null, "1",
   ["Menus and toolbars", "toolbars.htm", "11"],
   ["Customize the toolbars", "customize_the_toolbars.htm", "11"],
   ["Keyboard shortcuts", "keyboard.htm", "11"],
   ["Tray icon", "tray_icon.htm", "11"],
   ["Main menu", null, "1",
    ["File menu", "file_menu.htm", "11"],
    ["Edit menu", "edit_menu.htm", "11"],
    ["View menu", "view_menu.htm", "11"],
    ["Insert menu", "insert_menu.htm", "11"],
    ["Format menu", "format_menu.htm", "11"],
    ["Convert menu", "convert_menu.htm", "11"],
    ["Tools menu", "tools_menu.htm", "11"],
    ["Window menu", "window_menu.htm", "11"],
    ["Help menu", "help_menu.htm", "11"]
   ]
  ],
  ["Creating, opening, and saving files", null, "1",
   ["Create, open, or save a workbook", "create_open_save.htm", "11"],
   ["Name a workbook", "name.htm", "11"],
   ["Mail a workbook", "mail.htm", "11"],
   ["Templates", "templates.htm", "11"]
  ],
  ["Working with workbooks and worksheets", null, "1",
   ["Managing worksheets", null, "1",
    ["Move and scroll through a worksheet", "spreadsheet_move.htm", "11"],
    ["Multiple worksheets", "multi_worksheet.htm", "11"],
    ["Insert cells", "insert_cells.htm", "11"],
    ["Delete cells", "delete_cells.htm", "11"],
    ["Hide cells", "hide_cells.htm", "11"],
    ["Protect a workbook", "protect_workbook.htm", "11"]
   ],
   ["Editing and finding", null, "1",
    ["Select cells on a worksheet", "select_cells.htm", "11"],
    ["Enter values and formulas", "values.htm", "11"],
    ["Cut, copy, paste, or delete the cell contents", "cut_copy_paste.htm", "11"],
    ["Undo the last action", "undo.htm", "11"],
    ["Repeat the last action", "redo.htm", "11"],
    ["Find or replace data", "find_or_replace_specific_characters.htm", "11"]
   ],
   ["Formatting worksheets", null, "1",
    ["Copy formats from one cell or range to another", "copy_format.htm", "11"],
    ["Character formatting", "character_formatting.htm", "11"],
    ["Change a font type, style, or size", "change_font_type.htm", "11"],
    ["Cell formatting", "shading.htm", "11"]
   ],
   ["Printing", null, "1",
    ["Print a document", "print_document.htm", "11"],
    ["Change page properties", "change_the_appearance_document.htm", "11"],
    ["Header and footer", "hf.htm", "11"]
   ]
  ],
  ["Tools", null, "1",
   ["Character Map", "character_map.htm", "11"],
   ["Spell Checker", "spell_checker.htm", "11"]
  ],
  ["Preferences", null, "1",
   ["Overview", "overview_of_settings.htm", "11"],
   ["General settings", "general_settings.htm", "11"],
   ["Worksheet settings", "editor_settings.htm", "11"],
   ["Spelling settings", "spelling_settings.htm", "11"],
   ["Font and color settings", "font_and_color_settings.htm", "11"],
   ["Window settings", "window_settings.htm", "11"],
   ["Visual settings", "visual_settings.htm", "11"],
   ["Toolbars settings", "toolbars_settings.htm", "11"]
  ],
  ["Operators and formulas", null, "1",
   ["Arithmetic operators", "op_arithmetic.htm", "11"],
   ["Logical operators", "op_compare.htm", "11"],
   ["Mathematic functions", "op_math.htm", "11"],
   ["Date and Time functions", "op_date.htm", "11"],
   ["Text functions", "op_text.htm", "11"],
   ["Logical functions", "op_logical.htm", "11"],
   ["Statistical functions", "op_stat.htm", "11"],
   ["Information functions", "op_info.htm", "11"],
   ["Error codes", "errors.htm", "11"]
  ]
 ],
 ["Technical support", null, "1",
  ["Technical support", "tech_support.htm", "11"],
  ["Lost key", "lost_key.htm", "11"]
 ],
 ["License and registration", null, "1",
  ["Copyright and license", "copyright.htm", "11"],
  ["Registration information", "registration_information.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;
}

