var imgarr = new Array();
var title = new Array();
var aidx = new Array();

imgarr[1] = new Image();
imgarr[1].src = "/pressroom/kits/research/2009/images/t01.jpg";
title[1] = "Intel researchers Trevor Pering and Mayank Sharma sit with their Intel classmate PC and discuss  how new mobile devices will interact more easily and seamlessly for students in the future classroom setting.";
aidx[1] = "01";

imgarr[2] = new Image();
imgarr[2].src = "/pressroom/kits/research/2009/images/t02.jpg";
title[2] = "Intel researcher Trevor Pering acts as teacher to show how students can easily be selected seamlessly to participate and share information with the fellow students in the future classroom setting.";
aidx[2] = "02";

imgarr[3] = new Image();
imgarr[3].src = "/pressroom/kits/research/2009/images/t04.jpg";
title[3] = "Intel VP Pat Gelsinger speaks with researchers at the annual Research at Intel Day event.";
aidx[3] = "03";

imgarr[4] = new Image();
imgarr[4].src = "/pressroom/kits/research/2009/images/t05.jpg";
title[4] = "Intel CEO Paul Otellini speaks with researchers at the annual Research at Intel Day event with host and CTO Justin Rattner.";
aidx[4] = "04";

imgarr[5] = new Image();
imgarr[5].src = "/pressroom/kits/research/2009/images/t06.jpg";
title[5] = "Intel researcher Mic Bowman shows an attendee Intel's prototype of the 3D internet for the scientific world called ScienceSim, a common place where scientists can create visual simulations online and collaborate more effectively together.";
aidx[5] = "05";

imgarr[6] = new Image();
imgarr[6].src = "/pressroom/kits/research/2009/images/t07.jpg";
title[6] = "Attendees participated in a 3D virtual light saber duel at the annual Research at Intel Day event.";
aidx[6] = "06";

imgarr[7] = new Image();
imgarr[7].src = "/pressroom/kits/research/2009/images/t08.jpg";
title[7] = "A speaker, held by Intel researcher Emily Cooper, is powered wirelessly and efficiency -  independent of orientation, distance, and load over a wide range of operating conditions.";
aidx[7] = "07";

imgarr[8] = new Image();
imgarr[8].src = "/pressroom/kits/research/2009/images/t09.jpg";
title[8] = "Emily Cooper speaks with a group of attendees about wireless power transfer, whose efficiency can be nearly independent of orientation, distance, and load over a wide range of operating conditions.";
aidx[8] = "08";

imgarr[9] = new Image();
imgarr[9].src = "/pressroom/kits/research/2009/images/t10.jpg";
title[9] = "Intel CTO Justin Rattner gets set for a light saber duel, in a 3D virtual environment.";
aidx[9] = "09";

imgarr[10] = new Image();
imgarr[10].src = "/pressroom/kits/research/2009/images/t11.jpg";
title[10] = "Principal engineer Paul Diefenbaugh talks to James Song and an attendee about Platform power management, a project that is helping to enable up to a 50x reduction in platform idle power of future Intel MIDs and smartphones.";
aidx[10] = "10";

imgarr[11] = new Image();
imgarr[11].src = "/pressroom/kits/research/2009/images/t12.jpg";
title[11] = "A future mobile internet device enabled with platform power management, a research effort which will help to enable up to a 50x reduction in platform idle power of future Intel MIDs and smartphones.";
aidx[11] = "11";

imgarr[12] = new Image();
imgarr[12].src = "/pressroom/kits/research/2009/images/t13.jpg";
title[12] = "Rob Ennals shows off dispute finder, a beta Web site where users can play \"point, counterpoint\" by submitting a statement found online and learning whether he or she has been duped.";
aidx[12] = "12";

imgarr[13] = new Image();
imgarr[13].src = "/pressroom/kits/research/2009/images/t14.jpg";
title[13] = "Allison Woodruff talks to Intel Labs VP Andrew Chien about how individuals and communities will be able to contributing to help the environment with the new personal mobile device prototype which senses and collects air quality data.";
aidx[13] = "13";




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<14;i++) {
    im = "im"+i;
    document[im].src=imgarr[i].src;
  }
}