var imgarr = new Array();
var title = new Array();
var aidx = new Array();

imgarr[1] = new Image();
imgarr[1].src = "images/t01.jpg";
title[1] = "Mooly Eden, Intel vice president and general manager, Mobile Products Group shown on the Intel Chopper which was displayed in San Francisco on May 9 for the introduction of the next generation of Intel® Centrino® Pro processor technology.  The chopper was one of many Intel mobile designs and illustrates the truly exciting capabilities of today's mobile technology.  [209KB JPG]";
aidx[1] = "01";

imgarr[2] = new Image();
imgarr[2].src = "images/t02.jpg";
title[2] = "Mooly Eden, Intel vice president and general manager, Mobile Products Group shown on the Intel Chopper which was displayed in San Francisco on May 9 for the introduction of the next generation of Intel® Centrino® Pro processor technology.  The chopper was one of many Intel mobile designs and illustrates the truly exciting capabilities of today's mobile technology.  [180KB JPG]";
aidx[2] = "02";

imgarr[3] = new Image();
imgarr[3].src = "images/t03.jpg";
title[3] = "Mooly Eden, Intel vice president and general manager, Mobile Products Group, rehearsing for the May 9, media event in the Old Federal Reserve Building at Embarcadero Center, San Francisco.  [127KB JPG]";
aidx[3] = "03";

imgarr[4] = new Image();
imgarr[4].src = "images/t04.jpg";
title[4] = "Lifesytyle photography  [42MB TIFF]";
aidx[4] = "04";

imgarr[5] = new Image();
imgarr[5].src = "images/t05.jpg";
title[5] = "Lifesytyle photography  [44MB TIFF]";
aidx[5] = "05";

imgarr[6] = new Image();
imgarr[6].src = "images/t06.jpg";
title[6] = "Behind the scenes look at science gurus Adam Savage and Jamie Hyneman as they film a video trip through time to show how far mobile computer technology has come. Here they are pictured working on a new Intel® Centrino® Duo Processor technology based-notebook, propped up on a 1971 ''luggable'' notebook PC.  [1.1MB JPG]";
aidx[6] = "06";

imgarr[7] = new Image();
imgarr[7].src = "images/t07.jpg";
title[7] = "Science gurus Adam Savage and Jamie Hyneman show how far mobile computing has come -- contrasting a 1971 ''luggable'' notebook computer with Intel® Centrino® Duo processor technology-based sleek laptop designs. Adam and Jamie show how Intel's incredible shrinking transistors are helping to cram old, super-sized supercomputer performance into new small, sleek laptops with Intel® Centrino®  Duo processor technology.  [1MB JPG]";
aidx[7] = "07";

imgarr[8] = new Image();
imgarr[8].src = "images/t08.jpg";
title[8] = "Adam Savage shows the contrast between one byte from the past compared to the new Intel® Core™  2 Duo processor available in speeds up to 2.4 GHz. Jamie Hyneman looks on from the background. Science gurus Adam Savage and Jamie Hyneman show how Intel's incredible shrinking transistors are helping to cram an amazing amount of computer performance into small, sleek laptops with Intel® Centrino® Duo processor technology.  [1MB JPG]";
aidx[8] = "08";

imgarr[9] = new Image();
imgarr[9].src = "images/t09.jpg";
title[9] = "Intel® Core™ 2 Duo processor, front view  [45.8MB JPG/TIFF/EPS]";
aidx[9] = "09";

imgarr[10] = new Image();
imgarr[10].src = "images/t10.jpg";
title[10] = "Intel® Core™ 2 Duo processor, back view  [54.4MB JPG/TIFF/EPS]";
aidx[10] = "10";

imgarr[11] = new Image();
imgarr[11].src = "images/t11.jpg";
title[11] = "Intel® Core™ 2 Duo processor, front and back  [50.4MB JPG/TIFF/EPS]";
aidx[11] = "11";

imgarr[12] = new Image();
imgarr[12].src = "images/t12.jpg";
title[12] = "Intel® Core™ 2 Duo processor, angled view  [18.5MB JPG/TIFF/EPS]";
aidx[12] = "12";

imgarr[13] = new Image();
imgarr[13].src = "images/t13.jpg";
title[13] = "Intel® Centrino® processor technology  [16MB JPG/TIFF/EPS]";
aidx[13] = "13";

imgarr[14] = new Image();
imgarr[14].src = "images/t14.jpg";
title[14] = "Intel® Centrino® processor technology  [16MB JPG/TIFF/EPS]";
aidx[14] = "14";

imgarr[15] = new Image();
imgarr[15].src = "images/t15.jpg";
title[15] = "Mobile Intel® 965 Express Chipset Family  [36.3MB JPG/TIFF/EPS]";
aidx[15] = "15";

imgarr[16] = new Image();
imgarr[16].src = "images/t16.jpg";
title[16] = "Intel® Next-Gen Wireless-N, front view  [10.8MB JPG/TIFF/GIF]";
aidx[16] = "16";

imgarr[17] = new Image();
imgarr[17].src = "images/t17.jpg";
title[17] = "Intel® Next-Gen Wireless-N, back view  [30.7MB JPG/TIFF/EPS]";
aidx[17] = "17";

imgarr[18] = new Image();
imgarr[18].src = "images/t18.jpg";
title[18] = "Mooly Eden, Intel vice president and general manager, Mobile Products Group, rehearsing for the May 9, media event in the Old Federal Reserve Building at Embarcadero Center, San Francisco.  [170KB JPG]";
aidx[18] = "18";

imgarr[19] = new Image();
imgarr[19].src = "images/t19.jpg";
title[19] = "More than 230 Intel® Centrino® Duo and Intel® Centrino® Pro processor technology-based designs will be available around the world this year. Many interesting models were displayed in San Francisco kicking off the availability of the new designs ranging from fully loaded, 17-inch wide-screen models to tiny, energy-saving notebook PCs, to consumer-friendly creative casings in shades such as cotton-candy pink.  [168KB JPG]";
aidx[19] = "19";

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<20;i++) {
    im = "im"+i;
    document[im].src=imgarr[i].src;
  }
}