var imgarr = new Array();
var title = new Array();
var aidx = new Array();

imgarr[1] = new Image();
imgarr[1].src = "images/t01.jpg";
title[1] = "Karen Regis kicks off the Intel Mobile Technology Runway Event in New York''s Chelsea district.";
aidx[1] = "01";

imgarr[2] = new Image();
imgarr[2].src = "images/t02.jpg";
title[2] = "The processor was represented through fashionable bodysuits.";
aidx[2] = "02";

imgarr[3] = new Image();
imgarr[3].src = "images/t03.jpg";
title[3] = "An up close look at the processor wear.";
aidx[3] = "03";

imgarr[4] = new Image();
imgarr[4].src = "images/t04.jpg";
title[4] = "The 'multi-tasking super mom' shows off the Clarion MiND*";
aidx[4] = "04";

imgarr[5] = new Image();
imgarr[5].src = "images/t05.jpg";
title[5] = "The 'fashionista' demands style in her wardrobe but also her laptop.";
aidx[5] = "05";

imgarr[6] = new Image();
imgarr[6].src = "images/t06.jpg";
title[6] = "The 'tech trendsetter' looks for the latest devices on the market to satisfy his computing needs.";
aidx[6] = "06";

imgarr[7] = new Image();
imgarr[7].src = "images/t07.jpg";
title[7] = "The 'tech trendsetter' looks for the latest devices on the market to satisfy his computing needs.";
aidx[7] = "07";

imgarr[8] = new Image();
imgarr[8].src = "images/t08.jpg";
title[8] = "";
aidx[8] = "08";

imgarr[9] = new Image();
imgarr[9].src = "images/t09.jpg";
title[9] = "";
aidx[9] = "09";

imgarr[10] = new Image();
imgarr[10].src = "images/t10.jpg";
title[10] = "";
aidx[10] = "10";

imgarr[11] = new Image();
imgarr[11].src = "images/t11.jpg";
title[11] = "";
aidx[11] = "11";

imgarr[12] = new Image();
imgarr[12].src = "images/t12.jpg";
title[12] = "";
aidx[12] = "12";

imgarr[13] = new Image();
imgarr[13].src = "images/t13.jpg";
title[13] = "";
aidx[13] = "13";

imgarr[14] = new Image();
imgarr[14].src = "images/t14.jpg";
title[14] = "";
aidx[14] = "14";

imgarr[15] = new Image();
imgarr[15].src = "images/t15.jpg";
title[15] = "";
aidx[15] = "15";

imgarr[16] = new Image();
imgarr[16].src = "images/t16.jpg";
title[16] = "";
aidx[16] = "16";

imgarr[17] = new Image();
imgarr[17].src = "images/t17.jpg";
title[17] = "";
aidx[17] = "17";

imgarr[18] = new Image();
imgarr[18].src = "images/t18.jpg";
title[18] = "";
aidx[18] = "18";

imgarr[19] = new Image();
imgarr[19].src = "images/t19.jpg";
title[19] = "";
aidx[19] = "19";

imgarr[20] = new Image();
imgarr[20].src = "images/t20.jpg";
title[20] = "";
aidx[20] = "20";

imgarr[21] = new Image();
imgarr[21].src = "images/t21.jpg";
title[21] = "";
aidx[21] = "21";

imgarr[22] = new Image();
imgarr[22].src = "images/t22.jpg";
title[22] = "";
aidx[22] = "22";

imgarr[23] = new Image();
imgarr[23].src = "images/t23.jpg";
title[23] = "";
aidx[23] = "23";

imgarr[24] = new Image();
imgarr[24].src = "images/t24.jpg";
title[24] = "";
aidx[24] = "24";

function roll(n) {
  if (imgarr[n] == null) return;
  document.img.src = imgarr[n].src;
  document.art.titl.value = title[n];
}

function setup() {
  roll('2');
  for (i=1;i<25;i++) {
    im = "im"+i;
    document[im].src=imgarr[i].src;
  }
}