var imgarr = new Array();
var title = new Array();
var aidx = new Array();

imgarr[1] = new Image();
imgarr[1].src = "/pressroom/kits/research/2008/images/t01.jpg";
title[1] = "''Smart Car'' Using Computer Vision to Recognize and Track Objects for Driver Assistance and Safety";
aidx[1] = "01";

imgarr[2] = new Image();
imgarr[2].src = "/pressroom/kits/research/2008/images/t02.jpg";
title[2] = "''Smart Car'' Using Computer Vision to Recognize and Track Objects for Driver Assistance and Safety";
aidx[2] = "02";

imgarr[3] = new Image();
imgarr[3].src = "/pressroom/kits/research/2008/images/t03.jpg";
title[3] = "Platform power management is an area of research that redefines the behavior and power management of Intel platforms with the goal of significantly reducing power consumption.";
aidx[3] = "03";

imgarr[4] = new Image();
imgarr[4].src = "/pressroom/kits/research/2008/images/t04.jpg";
title[4] = "Platform power management is an area of research that redefines the behavior and power management of Intel platforms with the goal of significantly reducing power consumption.";
aidx[4] = "04";

imgarr[5] = new Image();
imgarr[5].src = "/pressroom/kits/research/2008/images/t05.jpg";
title[5] = "A state of the art gait analysis system which helps to reveal the key factors in people's gait, determining their risk of falling.";
aidx[5] = "05";

imgarr[6] = new Image();
imgarr[6].src = "/pressroom/kits/research/2008/images/t06.jpg";
title[6] = "A speech interface controlling the task of creating connections between two mobile devices and a wireless display with the goal of sharing resources and services.";
aidx[6] = "06";

imgarr[7] = new Image();
imgarr[7].src = "/pressroom/kits/research/2008/images/t07.jpg";
title[7] = "";
aidx[7] = "07";

imgarr[8] = new Image();
imgarr[8].src = "/pressroom/kits/research/2008/images/t08.jpg";
title[8] = "";
aidx[8] = "08";

imgarr[9] = new Image();
imgarr[9].src = "/pressroom/kits/research/2008/images/t09.jpg";
title[9] = "The Robotic Bartender aims to enable robots to perform useful tasks in unstructured home and office environments.";
aidx[9] = "09";

imgarr[10] = new Image();
imgarr[10].src = "/pressroom/kits/research/2008/images/t10.jpg";
title[10] = "Common Sense team is developing prototypes of mobile environmental sensing platforms that empower individuals and communities to gather, analyze, and share information in order to influence environmental policy.";
aidx[10] = "10";

imgarr[11] = new Image();
imgarr[11].src = "/pressroom/kits/research/2008/images/t11.jpg";
title[11] = "Ray tracing uses computational modeling to simulate light rays in a 3D scene, showing off photorealistic consumer applications.";
aidx[11] = "11";

imgarr[12] = new Image();
imgarr[12].src = "/pressroom/kits/research/2008/images/t12.jpg";
title[12] = "Ray tracing uses computational modeling to simulate light rays in a 3D scene, showing off photorealistic consumer applications.";
aidx[12] = "12";

imgarr[13] = new Image();
imgarr[13].src = "/pressroom/kits/research/2008/images/t13.jpg";
title[13] = "Tera-scale processors will give devices the ability to understand the contents of visual media.";
aidx[13] = "13";

imgarr[14] = new Image();
imgarr[14].src = "/pressroom/kits/research/2008/images/t14.jpg";
title[14] = "";
aidx[14] = "14";

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<15;i++) {
    im = "im"+i;
    document[im].src=imgarr[i].src;
  }
}