var TITEMS = [ 
 ["Introducing Mimer SQL Mobile", "source/html/wmg_intro.htm", "11"],
 ["Installing and Getting Started", "source/html/wmg_inst_get_start.htm", "1",
  ["Install Mimer SQL Mobile", "source/html/wmg_inst_mob.htm", "1",
   ["Installing on Windows Mobile", "source/html/wmg_inst_mob_wm.htm", "11"],
   ["Installing on Symbian", "source/html/wmg_inst_mob_symbian.htm", "11"],
   ["Emulators", "source/html/wmb_inst_emul.htm", "11"],
   ["Create a Database", "source/html/wmg_inst_credb.htm", "11"],
   ["About Precompiled Statements", "source/html/wmg_inst_stmt.htm", "11"]
  ],
  ["Export to a Handheld Device or Emulator", "source/html/wmb_inst_export.htm", "1",
   ["Windows Mobile", "source/html/wmb_inst_export_wm.htm", "11"],
   ["Symbian", "source/html/wmb_inst_export_symbian.htm", "11"]
  ]
 ],
 ["Working With Mimer SQL Mobile", null, "1",
  ["Understanding the Concept", "source/html/wmg_wrk_concept.htm", "11"],
  ["Database APIs", "source/html/wmg_wrk_apis.htm", "11"],
  ["Mimer Explorer - Accessing the Database on a Windows Mobile Device or Emulator", "source/html/wmg_wrk_explorer.htm", "1",
   ["Using Mimer Explorer", "source/html/wmg_wrk_explorer_using.htm", "11"]
  ],
  ["Developing Applications with Mimer SQL Mobile", null, "1",
   ["Development Environment", "source/html/wmg_wrk_devenv.htm", "11"],
   ["ADO.NET", "source/html/wmg_wrk_adonet.htm", "1",
    ["Mimer Data Provider in Visual Studio 2005", "source/html/wmg_wrk_adonet_vs2005.htm", "11"]
   ],
   ["Embedded SQL", "source/html/wmg_wrk_embedded_sql.htm", "1",
    ["Example 1", "source/html/wmg_wrk_embedded_sql_ex1.htm", "11"],
    ["Example 2", "source/html/wmg_wrk_embedded_sql_ex2.htm", "11"],
    ["Example 3", "source/html/wmg_wrk_embedded_sql_ex3.htm", "11"],
    ["Extending the Examples", "source/html/wmg_wrk_embedded_sql_ext_ex.htm", "11"]
   ],
   ["JDBC", "source/html/wmg_wrk_jdbc.htm", "1",
    ["Pesonal Java on Symbian", "source/html/wmg_wrk_jdbc_pjava.htm", "11"],
    ["MIDlets on Symbian", "source/html/wmg_wrk_jdbc_midlet.htm", "11"]
   ],
   ["Symbian C++ API", "source/html/wmg_wrk_symbian_cpp.htm", "11"],
   ["ODBC", "source/html/wmg_wrk_odbc.htm", "1",
    ["ODBC Files in the Distribution", "source/html/wmg_wrk_odbc_files.htm", "11"],
    ["Linking Applications", "source/html/wmg_wrk_odbc_linking.htm", "11"],
    ["Supported ODBC Functions", "source/html/wmg_wrk_odbc_sup_func.htm", "11"]
   ],
   ["Packaging Mimer SQL Mobile Applications on Symbian", "source/html/wmg_wrk_pack_symbian.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;
}

