//In case a new manufacturer needs to be added along with its corresponding phones, create a new line item in the following manner
//manufacturer[last index+1] = ['manufacturerName',new Array('phone1','phone2',.....)]
//Incase a phone needs to be added to an existing manufacturer, find the line item with the manufacturerName and add the phone
//Ex: A phone called i370 needs to be added to the manufacturer nokia, then edit the following line item and add the phone to the last
//manufacturer[2] = ['nokia',new Array('r750plus','P280','T720','i370')]

manufacturer = new Array();
manufacturer[0] = ['BlackBerry',new Array('BlackBerry 7130e&trade;','BlackBerry 7250&trade;','BlackBerry 8703e&trade;')];
manufacturer[1] = ['LG',new Array('Fusic&trade; by LG','LX350 by LG&reg;','MM-535 by LG&reg;','PM-225 by LG&reg;','PM-325 by LG&reg;','VI-125 by LG&reg;','VI-5225 by LG&reg;')];
manufacturer[2] = ['Motorola',new Array('C290 by Motorola','MOTOKRZR&trade; K1m by Motorola&reg;','MOTORAZR&trade; V3m by Motorola&reg;','MOTOSLVR&trade; L7c by Motorola&reg;','Red MOTORAZR&trade; V3m by Motorola&reg;')];
manufacturer[3] = ['Nokia',new Array('6016i by Nokia&reg;','6165i by Nokia&reg;','PM-3205 by Nokia&reg;','PM-6225 by Nokia&reg;','VI-3155i by Nokia&reg;')];
manufacturer[4] = ['Palm',new Array('Treo&trade; 600 by Palm','Treo&trade; 650 by Palm','Treo&trade; 700P by Palm','Treo&trade; 700wx by Palm')];
manufacturer[5] = ['Samsung',new Array('A420 by Samsung&reg;','A560 by Samsung&reg;','A580 by Samsung&reg;','A640 by Samsung&reg;','A960 by Samsung&reg;','IP-A790 by Samsung&reg;','IP-830w by Samsung&reg;','M500 by Samsung&reg;','MM-A700 by Samsung&reg;','MM-A800 by Samsung&reg;','MM-A900M by Samsung&reg;','MM-A920 by Samsung&reg;','MM-A940 by Samsung&reg;','PM-A740 by Samsung&reg;','PM-A840 by Samsung&reg;','RL-A760','SP-i600','VGA1000','VI-A820','VI-660 by Samsung&reg;','VM-A680')];
manufacturer[6] = ['Sanyo',new Array('Katana by Sanyo&reg;','MM-5600 by Sanyo&reg;','MM-7500 by Sanyo&reg;','MM-8300 by Sanyo&reg;','MM-9000 by Sanyo&reg;','PM-8200 by Sanyo&reg;','RL-4920 by Sanyo&reg;','RL-4930 by Sanyo&reg;','RL-7300 by Sanyo&reg;','RL-2000 by Sanyo&reg;','RL-2500 by Sanyo&reg;','SCP-2400 by Sanyo&reg;','SCP-3100 by Sanyo&reg;','SCP-8400 by Sanyo&reg;','VI-2300','VM-4500 by Sanyo&reg;')];
manufacturer[7] = ['Sprint',new Array('Sprint PCS&reg; CDM-120','Sprint PCS&reg; PM-8912 by Audiovox','Sprint PCS&reg; PM-8920 by Audiovox','Sprint PCS&reg; PPC-6600','Sprint PCS&reg; PPC-6700')];
manufacturer[8] = ['Toshiba',new Array('VM-4050 by Toshiba&reg;')];



manufacturerLink = new Array();
manufacturerLink[0] = "/cdma/support/manufacturers/blackberry.shtml";
manufacturerLink[1] = "/cdma/support/manufacturers/lg.shtml";
manufacturerLink[2] = "/cdma/support/manufacturers/motorola.shtml";
manufacturerLink[3] = "/cdma/support/manufacturers/nokia.shtml";
manufacturerLink[4] = "/cdma/support/manufacturers/palm.shtml";
manufacturerLink[5] = "/cdma/support/manufacturers/samsung.shtml";
manufacturerLink[6] = "/cdma/support/manufacturers/sanyo.shtml";
manufacturerLink[7] = "/cdma/support/manufacturers/sprint.shtml";
manufacturerLink[8] = "/cdma/support/manufacturers/toshiba.shtml";


