var TITEMS = [ 
 ["ASaP", "html/html/idh_asap.htm", "11"],
 ["ASAP Topics", null, "2",
  ["Versions", "html/html/idh_versions.htm", "9"],
  ["Loading Projects", "html/html/idh_loadingprojects.htm", "9"],
  ["New Project", "html/html/idh_new_project.htm", "11"],
  ["Databases", "html/html/idh_databases.htm", "9"],
  ["Tables", "html/html/idh_tables.htm", "9"],
  ["Fields", "html/html/idh_fields.htm", "9"],
  ["MySQL Fields", "html/html/idh_mysql_fields.htm", "9"],
  ["Field Formatting", "html/html/idh_formatting.htm", "9"],
  ["Advanced Options", "html/html/idh_advanced.htm", "9"],
  ["Drop Down Lists", "html/html/idh_dropdown.htm", "9"],
  ["Chained DropDown Menus", "html/html/Chained_DropDown_Menus.htm", "11"],
  ["Relational Pages", "html/html/idh_relationalpages.htm", "9"],
  ["Design - Color Layout", "html/html/idh_colorlayout.htm", "9"],
  ["Design - Detail Page", "html/html/Design___Detail_Options.htm", "11"],
  ["Design Options", "html/html/Design_Options.htm", "11"],
  ["Templates", "html/html/idh_templates.htm", "9"],
  ["Image Options", "html/html/Image_Options.htm", "11"],
  ["Hyperlink Options", "html/html/Hyperlink_Options.htm", "11"],
  ["Shopping Cart", "html/html/Shopping_Cart.htm", "11"],
  ["Login Options", "html/html/Login_Options.htm", "11"],
  ["Generating Files", "html/html/idh_generatingfiles.htm", "9"],
  ["FTP", "html/html/idh_ftp.htm", "9"],
  ["Saving Projects", "html/html/idh_savingprojects.htm", "9"],
  ["Registration", "html/html/idh_registration.htm", "9"]
 ],
 ["Quick Start", null, "2",
  ["Quick Start", "html/html/idh_quickstart.htm", "9"],
  ["Demo", "html/html/idh_demo.htm", "9"]
 ],
 ["Errors", null, "2",
  ["Errors", "html/html/idh_errors.htm", "9"]
 ],
 ["Getting Started", null, "2",
  ["Introduction", "html/html/idh_introduction.htm", "9"],
  ["System Requirements", "html/html/idh_systemrequirements.htm", "9"],
  ["FAQ", "html/html/idh_faq.htm", "9"],
  ["DSN", "html/html/idh_dsn.htm", "9"],
  ["Prerequisite", "html/html/idh_prerequisite.htm", "9"],
  ["Preparation", "html/html/idh_preparation.htm", "9"],
  ["Welcome", "html/html/idh_welcome.htm", "11"],
  ["Host Test", "html/html/idh_host_test.htm", "11"],
  ["Load MySQL", "html/html/idh_load_mysql.htm", "11"],
  ["Copy Projects", "html/html/idh_copy_projects.htm", "11"],
  ["mysql_connection_alternative", "html/html/mysql_connection_alternative.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;
}

