var TITEMS = [ 
 ["Anleitung", null, "1",
  ["Was ist NotesHolder", "source/src_intro.htm", "11"],
  ["Funktionsmerkmale", "source/src_features.htm", "11"],
  ["NotesHolder und NotesHolder Lite", "source/src_diff.htm", "11"]
 ],
 ["NotesHolder benutzen", null, "1",
  ["Haupmenü", "source/src_menu.htm", "11"],
  ["Hauptmenü", null, "1",
   ["Überblick", "source/src_noteswindow.htm", "11"],
   ["Notiz Listen", "source/src_notelist.htm", "11"],
   ["Notiz Kategorien", "source/src_catlist.htm", "11"]
  ],
  ["Finden einer Notiz", "source/src_find.htm", "11"],
  ["Erinnerungen", "source/src_reminder.htm", "11"],
  ["Einstellungen", "source/src_settings.htm", "12"],
  ["Exportieren von Notizen", "source/src_export.htm", "11"],
  ["Sprach Editor", "source/src_lang.htm", "11"],
  ["Datenbank wiederherstellen", "source/src_restore.htm", "12"],
  ["Tastenkürzel", "source/src_hotkeys.htm", "11"]
 ],
 ["Wie...", null, "1",
  ["Wie installieren, oder upgraden?", "source/src_howto_upgrade.htm", "12"],
  ["Wie erstellt man eine neue Notiz?", "source/src_howto_newnote.htm", "11"],
  ["Wie löscht man eine Notiz?", "source/src_howto_deletenote.htm", "11"],
  ["Wie wird das Hauptfenster angedockt?", "source/src_howto_dockwind.htm", "11"],
  ["Wie druckt man eine Notiz?", "source/src_howto_printnote.htm", "11"],
  ["Wie erstellt man ein Backup der Notizdatenbank?", "source/src_howto_backup.htm", "11"],
  ["Wie repariert man eine Notizdatenbank?", "source/src_restore.htm", "11"]
 ],
 ["Registrieren", null, "1",
  ["Produkt Lizenz - Von NotesHolder", "source/src_register_license.htm", "11"],
  ["Produkt Lizenz - Von NotesHolder Lite", "source/src_register_license_l.htm", "11"],
  ["Warum registrieren?", "source/src_register_whyreg.htm", "11"],
  ["Wie kaufen und Registrieren?", "source/src_register_register.htm", "11"]
 ],
 ["Über...", null, "1",
  ["Programmupdates", "source/src_about_progupd.htm", "11"],
  ["Technischer Support", "source/src_about_techsup.htm", "11"],
  ["Unsere Produkte", "source/src_about_products.htm", "11"],
  ["Kontakt zu A!K Research Labs", "source/src_about_contact.htm", "11"],
  ["Copyright", "source/src_about_copyright.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;
}


