var imgarr = new Array();
var title = new Array();
var aidx = new Array();

imgarr[1] = new Image();
imgarr[1].src = "images/t01.jpg";
title[1] = "Map of Clear coverage in Portland";
aidx[1] = "01";

imgarr[2] = new Image();
imgarr[2].src = "images/t02.jpg";
title[2] = "Sean Maloney of Intel discusses the convenience WiMAX brings to Portland residents with broadband on-the-go for wireless access beyond hot spots.";
aidx[2] = "02";

imgarr[3] = new Image();
imgarr[3].src = "images/t03.jpg";
title[3] = "Sean Maloney of Intel discusses the convenience WiMAX brings to Portland residents with broadband on-the-go for wireless access beyond hot spots.";
aidx[3] = "03";

imgarr[4] = new Image();
imgarr[4].src = "images/t04.jpg";
title[4] = "Sean Maloney of Intel discusses the convenience WiMAX brings to Portland residents with broadband on-the-go for wireless access beyond hot spots.";
aidx[4] = "04";

imgarr[5] = new Image();
imgarr[5].src = "images/t05.jpg";
title[5] = "Clearwire CEO Ben Wolff, Clearwire CSO Scott Richardson and Intel Chief Sales and Marketing Officer Sean Maloney kick-off the Jan. 6, 2009 WiMAX launch in Portland, Ore., making Portland one of the first two cities nationwide outfitted with the new technology.";
aidx[5] = "05";

imgarr[6] = new Image();
imgarr[6].src = "images/t06.jpg";
title[6] = "Attendees celebrate new WiMAX availability in Portland and experience how WiMAX-embedded Intel Centrino® 2 notebooks can transform Internet access across an entire city.";
aidx[6] = "06";

imgarr[7] = new Image();
imgarr[7].src = "images/t07.jpg";
title[7] = "Clearwire CEO Ben Wolff demonstrates the speed and quality of a real-time WiMAX-enabled video conference call with Portland Mayor Sam Adams.";
aidx[7] = "07";

imgarr[8] = new Image();
imgarr[8].src = "images/t08.jpg";
title[8] = "Sean Maloney of Intel discusses the convenience WiMAX brings to Portland residents with broadband on-the-go for wireless access beyond hot spots.";
aidx[8] = "08";

imgarr[9] = new Image();
imgarr[9].src = "images/t09.jpg";
title[9] = "Pedicabs outfitted with WiMAX-embedded Intel Centrino® 2 laptops showcase the strong WiMAX connectivity throughout Portland.";
aidx[9] = "09";


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<10;i++) {
    im = "im"+i;
    document[im].src=imgarr[i].src;
  }
}
