var TITEMS = [ 
 ["Einführung", "introduction.htm", "1",
  ["Vereinbarungen und Definitionen", "conventionsanddefinitions.htm", "11"],
  ["Credits", "credits.htm", "11"]
 ],
 ["Kaufen und Lizenzen", "purchasingandlicensing.htm", "1",
  ["Oft gestellte Fragen", "frequentlyaskedquestions.htm", "11"],
  ["Probelizenz", "triallicense.htm", "1",
   ["Hinweise", "notes.htm", "11"],
   ["Produkte ohne Probelizenz", "nofreetrial.htm", "11"],
   ["keine Lizenz", "nolicense.htm", "11"],
   ["Standortschlüssel einfügen (unlock key)", "pasteunlockkey.htm", "11"],
   ["Gültiger Standorschlüssel(Site Key OK)", "sitekeyok.htm", "11"],
   ["Probezeit ist abgelaufen", "trialhasended.htm", "11"],
   ["Lizenzierungshinweise", "licensingnotice.htm", "11"]
  ],
  ["Registrierung", "registration.htm", "1",
   ["Mit einer Probelizenz starten", "startupwithtriallicense.htm", "11"],
   ["Freischalten", "register.htm", "11"],
   ["Hinweise", "notesregistration.htm", "11"]
  ],
  ["Probleme", "problems.htm", "11"],
  ["Netzwerklizenzen", "networklicense.htm", "11"],
  ["Mehrere Benutzer mit XP / Win2000 / NT", "multiuseruseonxpwin2000nt.htm", "1"],
  ["Definitionen", null, "1",
   ["SWiSHloc", "swishloc.htm", "11"],
   ["SWiSHzone Produkt", "swishzoneproduct.htm", "11"],
   ["Registrierte Email Addresse", "registeredemailaddress.htm", "11"],
   ["Registrierte Benutzer", "registereduser.htm", "11"],
   ["Standortcode/ Site Code", "sitecode.htm", "11"],
   ["Standortschlüssel/Site Key", "sitekey.htm", "11"],
   ["Aktivieren des Standortschlüssels/Site Key Activation", "sitekeyactivation.htm", "11"],
   ["Probezeit Standortschlüssel / Trial Site Key", "trialsitekey.htm", "11"],
   ["Ausprobieren/Try Button", "trybutton.htm", "11"],
   ["Freischaltschaltfläche/Unlock Button", "unlockbutton.htm", "11"],
   ["Unbeschränkter Standortschlüssel/Unlimited Site Key", "unlimitedsitekey.htm", "11"],
   ["Freischaltwebseite / Unlock web page", "unlockwebpage.htm", "11"],
   ["Freischaltfenster", "unlockwindow.htm", "11"],
   ["Freischaltschlüssel / Unlock Key", "unlockkey.htm", "11"]
  ]
 ],
 ["Neues oder vorhandenes Album öffnen", "openneworexistingalbum.htm", "1",
  ["Neues Album", "newalbum.htm", "11"],
  ["bestehendes Album öffnen", "openexistingalbum.htm", "11"]
 ],
 ["Menu", "menuitems.htm", "1",
  ["Werkzeug Menu", "toolsmenu.htm", "1",
   ["Optionen", "options.htm", "11"]
  ],
  ["Dateimenu", "filemenu.htm", "11"],
  ["Hilfemenu", "help.htm", "11"]
 ],
 ["Die 5 Schritte zum Album", "editmodifypublish.htm", "1",
  ["Fotos", "photos.htm", "11"],
  ["Bearbeiten", "edit.htm", "11"],
  ["Album", "album.htm", "11"],
  ["Dekorieren / Decorate", "decorate.htm", "11"],
  ["Veröffentlichen", "publish.htm", "11"]
 ],
 ["Album auf CD brennen / Saving Album to CD-ROM", "savingalbumtocd_rom.htm", "11"],
 ["Album als Bildschirmschoner exportieren / Saving Album into a Screen Saver", "savealbumintoascreensaver.htm", "11"],
 ["Album für das Web exportieren / Publishing SWiSHpix albums to the Web", "publishingswishfiles.htm", "11"],
 ["Oft gestellte Fragen", "faq.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;
}

