var TITEMS = [ 

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

 ["3200 LS-Color Presentation", "start_2.htm", "2",
  ["3200 LS Handsfree Carkit", "3200LS_1.htm", "15"],
  ["Installation", "glob_installation.htm", "15"],
  ["Technical Specifications", "techspec.htm", "15"],
  ["Parrot's Functions", "3200LS_gene.htm", "15",
   ["Using Standard Features", "standard_feat_1.htm", "11"]
  ],
  ["Menus", "menus.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",
    ["Contacts Management", "contacts_man.htm", "11", 
//    ["Paired Devices", "paired_1.htm", "11"],
    	["Phonebook Manager", "contacts_man_1.htm", "11"],
		["Delete Contacts", "delete_contact.htm", "11"],
	  	["Receive Contacts", "receive_contact.htm", "11"],  
		["Sort Order", "sort_order.htm", "11"],
	],
	["Paired Devices", "paired_devices.htm", "11"],
	["Pair with Phone...", "pair_with_phone.htm", "11"],  
	["Language", "langage_1.htm", "11"],
    ["Voice Commands", "voice_comm.htm", "11"],	
	["Display", "display.htm", "11"],
	["Sound", "sound.htm", "11"],
	["Automatic Answer", "auto_ans.htm", "11"], 
	["Information", "info_1.htm", "11"],  
	["Software Update", "soft_update.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;
}

