var TITEMS = [ 
 ["Introduction", null, "1",
  ["About NotePro", "about.htm", "11"],
  ["Overview of features", "overview_of_features.htm", "11"],
  ["What's new?", "version_history.htm", "11"]
 ],
 ["Using NotePro", null, "1",
  ["Overview", "overview.htm", "11"],
  ["Checking for updates", "updates.htm", "11"],
  ["Portability", "portability.htm", "11"],
  ["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"],
    ["Table menu", "table_menu.htm", "11"],
    ["Window menu", "window_menu.htm", "11"],
    ["Help menu", "help_menu.htm", "11"]
   ]
  ],
  ["Working with a documents", null, "1",
   ["Common tasks", "common.htm", "11"],
   ["Create, open, or save a document", "create_open_save.htm", "11"],
   ["Name a document", "name.htm", "11"],
   ["Mail a document", "mail.htm", "11"],
   ["Templates", "templates.htm", "11"],
   ["Changing the appearance of a document", null, "1",
    ["Layout views", "layout.htm", "11"],
    ["Formatting marks", "formatting.htm", "11"],
    ["Header and footer", "hf.htm", "11"]
   ],
   ["Editing and finding", null, "1",
    ["Cut, copy, paste, or delete text", "cut_copy_paste.htm", "11"],
    ["Undo the last action", "undo.htm", "11"],
    ["Repeat the last action", "redo.htm", "11"],
    ["Count words and lines in a document", "count.htm", "11"],
    ["Hyphenate text", "hyphen.htm", "11"],
    ["Find or replace specific characters or words", "find_or_replace_specific_characters.htm", "11"],
    ["Look up words in the thesaurus", "thesaurus.htm", "11"],
    ["Bookmarks", "bookmarks.htm", "11"],
    ["Links", "links.htm", "11"]
   ],
   ["Format text", null, "1",
    ["Character formatting", "character_formatting.htm", "11"],
    ["Change a font type, style, or size", "change_font_type.htm", "11"],
    ["Create a bulleted list", "create_bulleted_list.htm", "11"],
    ["Indent a paragraph", "indent_paragraph.htm", "11"],
    ["Change the alignment of a paragraph", "change_the_alignment.htm", "11"],
    ["Borders and shading", "shading.htm", "11"],
    ["Format with styles", null, "1",
     ["About styles", "about_styles.htm", "11"],
     ["Create a style", "create_style.htm", "11"],
     ["Apply a style", "apply_style.htm", "11"],
     ["Modify a style", "modify_style.htm", "11"],
     ["Delete a style", "delete_style.htm", "11"]
    ]
   ],
   ["Creating drawing objects", null, "1",
    ["Add or change a shape", "shape_add.htm", "11"],
    ["Change one shape to another", "shape_change.htm", "11"],
    ["Delete a shape", "shape_delete.htm", "11"],
    ["Resize a shape", "shape_resize.htm", "11"]
   ],
   ["Print", null, "1",
    ["Print a document", "print_document.htm", "11"],
    ["Change page properties", "change_the_appearance_document.htm", "11"]
   ],
   ["Create connections with other documents", null, "1",
    ["Embed or link an object into NotePro", "embed_or_link.htm", "11"],
    ["Edit linked objects", "edit_linked_objects.htm", "11"]
   ],
   ["Tables", null, "1",
    ["About tables", "about_tables.htm", "11"],
    ["Create a table", "create_table.htm", "11"],
    ["Type and move around in a table", "type_and_move_table.htm", "11"],
    ["Select items in a table", "select_table.htm", "11"],
    ["Modify table", "modify_table.htm", "11"],
    ["Move, copy or delete items in a table", "move_copy_delete_table.htm", "11"]
   ]
  ],
  ["Tools", null, "1",
   ["Calculator", "calculator.htm", "11"],
   ["Calculate expression", "calculate_expression.htm", "11"],
   ["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"],
   ["Editor settings", "editor_settings.htm", "11"],
   ["Spelling settings", "spelling_settings.htm", "11"],
   ["Layout settings", "layout_settings.htm", "11"],
   ["Font and color settings", "font_and_color_settings.htm", "11"],
   ["File types settings", "file_types_settings.htm", "11"],
   ["Prompts settings", "prompts_settings.htm", "11"],
   ["Window settings", "window_settings.htm", "11"],
   ["Visual settings", "visual_settings.htm", "11"],
   ["Toolbars settings", "toolbars_settings.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;
}


