var TITEMS = [ 


 ["Bluetooth Phones", "start.htm", "2"],


 ["Summary", "start_3.htm", "2",
  ["Products Line", "start_2.htm", "15"],
  ["Installation", "glob_installation.htm", "15"],
  ["Technical Specifications", "ck_1_e.htm", "15"],
  ["Parrot Display", "xanthi_1.htm", "15",
   ["Using Standard Features", "standard_feat_1.htm", "11"]
  ],
  ["Menus", "xanthi_3.htm", "15",
   ["Phone Book", "pb_1.htm", "11"],
   ["Calls", "calls_1.htm", "11"],
   ["Dial Number", "dial_1.htm", "11"],
   ["Voice Command", "voice_1.htm", "11",
    ["Phone Book", "pb_2.htm", "11"],
    ["Keywords", "keyw_1.htm", "11"],
    ["Select Voice Recognition", "selectvr_1.htm", "11"]
   ],
   ["Settings", "settings_1.htm", "11",
    ["Paired Devices", "paired_1.htm", "11"],
    ["Language", "langage_1.htm", "11"],
    ["Volume", "volume_1.htm", "11"],
    ["Spoken Menus", "spoken_menus_1.htm", "11"],
    ["Display", "display_1.htm", "11"],
    ["Automatic Answer", "auto_ans_1.htm", "11"],
    ["Information", "info_1.htm", "11"],
    ["Advanced Settings", "adv_set_1.htm", "11",
     ["Pair with phone...", "adv_set_2.htm", "11"],
     ["Delete contacts", "adv_set_6.htm", "11"],
     ["Object Push", "adv_set_3.htm", "11"],
     ["Software Update", "adv_set_4.htm", "11"],
     ["Demo Mode", "adv_set_5.htm", "11"]
    ]
   ],
   ["SIM Card", "sc_1.htm", "11",
    ["Telematic", "sc_2.htm", "11"],
    ["Automatic Mode", "sc_3.htm", "11"],
    ["PIN Number", "sc_4.htm", "11"],
    ["Pair with phone...", "sc_5.htm", "11"]
   ],
   ["GPS", "gps_1.htm", "11"]
  ],
  ["CK3100 Advanced car kit", "3100_1.htm", "15",
   ["Getting Started", "getting_3100.htm", "11"]
  ],
  ["CK3300 GPS car kit", "3300_1.htm", "15",
   ["Getting Started", "getting_3300.htm", "11"]
  ],
  ["CK3500 Professional car kit", "3500_1.htm", "15",
   ["Getting Started", "getting_3500.htm", "11"],
   ["Telematics Applications", "3500_3.htm", "11"],
   ["Pairing Procedure for CK3500", "sc_1_pairing.htm", "11"]
  ]
 ],
  ["Customer Care", "ck_3.htm", "19",
  ["Registering Your Product", "ck_3_a.htm", "11"],
  ["Upgrading Your Product", "ck_3_b.htm", "11"],
  ["Troubleshooting", "ck_3_c.htm", "11"]
//  ["Updating The Help Files", "ck_3_d.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;
}


