var imgarr = new Array();
var title = new Array();
var aidx = new Array();

imgarr[1] = new Image();
imgarr[1].src = "/pressroom/kits/centrino2/images/sm01.jpg";
title[1] = "Intel® Core™ 2 Duo processor";
aidx[1] = "1";

imgarr[2] = new Image();
imgarr[2].src = "/pressroom/kits/centrino2/images/sm02.jpg";
title[2] = "Mobile Intel® 4 Series Express Chipset";
aidx[2] = "2";

imgarr[3] = new Image();
imgarr[3].src = "/pressroom/kits/centrino2/images/sm03.jpg";
title[3] = "Mobile Intel® 4 Series Express Chipset";
aidx[3] = "3";

imgarr[4] = new Image();
imgarr[4].src = "/pressroom/kits/centrino2/images/sm04.jpg";
title[4] = "Intel® WiFi Link 5000 series";
aidx[4] = "4";

imgarr[5] = new Image();
imgarr[5].src = "/pressroom/kits/centrino2/images/sm05.jpg";
title[5] = "Intel® WiFi Link 5000 series";
aidx[5] = "5";

imgarr[6] = new Image();
imgarr[6].src = "/pressroom/kits/centrino2/images/sm06.jpg";
title[6] = "Fujitsu Lifebook E8420 with Intel® vPro™ Technology";
aidx[6] = "6";

imgarr[7] = new Image();
imgarr[7].src = "/pressroom/kits/centrino2/images/sm07.jpg";
title[7] = "Fujitsu Lifebook S7220";
aidx[7] = "7";

imgarr[8] = new Image();
imgarr[8].src = "/pressroom/kits/centrino2/images/sm08.jpg";
title[8] = "HP Compaq 6730b Notebook PC";
aidx[8] = "8";

imgarr[9] = new Image();
imgarr[9].src = "/pressroom/kits/centrino2/images/sm09.jpg";
title[9] = "Lenovo IdeaPad Y730 with Game Zone";
aidx[9] = "9";

imgarr[10] = new Image();
imgarr[10].src = "/pressroom/kits/centrino2/images/sm10.jpg";
title[10] = "Lenovo ThinkPad SL400";
aidx[10] = "10";

imgarr[11] = new Image();
imgarr[11].src = "/pressroom/kits/centrino2/images/sm11.jpg";
title[11] = "Sony VGN-FW198UH";
aidx[11] = "11";

imgarr[12] = new Image();
imgarr[12].src = "/pressroom/kits/centrino2/images/sm12.jpg";
title[12] = "Toshiba Qosmio X305";
aidx[12] = "12";

imgarr[13] = new Image();
imgarr[13].src = "/pressroom/kits/centrino2/images/sm13.jpg";
title[13] = "Mooly Eden, Intel vice president and general manager of the Mobile Platforms Group, kicks off Centrino 2 launch in San Francisco.";
aidx[13] = "13";

imgarr[14] = new Image();
imgarr[14].src = "/pressroom/kits/centrino2/images/sm14.jpg";
title[14] = "Mooly Eden, Intel vice president and general manager of the Mobile Platforms Group, kicks off Centrino 2 launch in San Francisco.";
aidx[14] = "14";

imgarr[15] = new Image();
imgarr[15].src = "/pressroom/kits/centrino2/images/sm15.jpg";
title[15] = "Mooly Eden, Intel vice president and general manager of the Mobile Platforms Group, kicks off Centrino 2 launch in San Francisco.";
aidx[15] = "15";

imgarr[16] = new Image();
imgarr[16].src = "/pressroom/kits/centrino2/images/sm16.jpg";
title[16] = "Mooly Eden, Intel vice president and general manager of the Mobile Platforms Group, kicks off Centrino 2 launch in San Francisco.";
aidx[16] = "16";


function roll(n) {
  if (imgarr[n] == null) return;
  document.img.src = imgarr[n].src;
  document.art.titl.value = title[n];
}

function setup() {
  roll('1');
  for (i=1;i<17;i++) {
    im = "im"+i;
    document[im].src=imgarr[i].src;
  }
}