var imgarr = new Array();
var title = new Array();
var aidx = new Array();

imgarr[1] = new Image();
imgarr[1].src = "images/t01.jpg";
title[1] = "Intel co-founder Robert Noyce often provided the counsel to his employees to “go off and do something wonderful.”";
aidx[1] = "01";

imgarr[2] = new Image();
imgarr[2].src = "images/t02.jpg";
title[2] = "On Feb 11, we celebrate National Inventor’s Day and applaud the creativity of today’s inventors. Intel co-founder Robert Noyce is often credited as one of the greatest inventors of our time and an inspiration to today’s inventors who seek to change the world.";
aidx[2] = "02";

imgarr[3] = new Image();
imgarr[3].src = "images/t03.jpg";
title[3] = "Intel co-founder Robert Noyce ended up redefining the electronics industry with the creation of the integrated circuit 50 years ago and set a course that changed the world.";
aidx[3] = "03";

imgarr[4] = new Image();
imgarr[4].src = "images/t04.jpg";
title[4] = "Over 40 years ago, Andy Grove, Robert Noyce and Gordon Moore joined forces to incorporate a small electronics firm in Mountain View, California to regain the satisfaction of research and development in a small and growing company. Though not a small company anymore, Intel’s focus on research and development remains strong.";
aidx[4] = "04";

imgarr[5] = new Image();
imgarr[5].src = "images/t05.jpg";
title[5] = "Sean Koehl demonstrates how many-core PCs will act more like humans with computer vision and the ability to make your home videos look professions.";
aidx[5] = "05";

imgarr[6] = new Image();
imgarr[6].src = "images/t06.jpg";
title[6] = "Intel is bringing the best of the Internet experience to the living room with the new Media Processor and TV applications framework called the Widget Channel.";
aidx[6] = "06";

imgarr[7] = new Image();
imgarr[7].src = "images/t07.jpg";
title[7] = "Robotics become personal with this demonstration that shows how a sensing techniques may be used to give future “home-bots” the ability to grasp odd-shaped objects without breaking them.";
aidx[7] = "07";

imgarr[8] = new Image();
imgarr[8].src = "images/t08.jpg";
title[8] = "The Azentek Atlas Car PC concept shows how the same digital technologies in our office and home may come to the car.";
aidx[8] = "08";

imgarr[9] = new Image();
imgarr[9].src = "images/t09.jpg";
title[9] = "The UbiFit Garden is a concept using self-monitoring and positive feedback to encourage individuals to participate in regular and varied physical activity.";
aidx[9] = "09";

imgarr[10] = new Image();
imgarr[10].src = "images/t10.jpg";
title[10] = "Intel researchers are now able to identify and harness sources of power for consumer electronics devices, making them less reliant on the electrical grid, and also recycling that energy to power smaller devices.";
aidx[10] = "10";

imgarr[11] = new Image();
imgarr[11].src = "images/t11.jpg";
title[11] = "The Intel® Atom™ processor powers the OpenPeak phone that allows you to access things like e-mail, web content, address book and directory services as well as traditional phone services in the home, all in one device.";
aidx[11] = "11";

imgarr[12] = new Image();
imgarr[12].src = "images/t12.jpg";
title[12] = "The Intel Health Guide will eventually connect patients and their care teams for personalized care management.";
aidx[12] = "12";

imgarr[13] = new Image();
imgarr[13].src = "images/t13.jpg";
title[13] = "Edwin Verplanck showcases Intel's proof-of-concept kiosk to combine the Internet and technology, enhancing the shopping experience with digital signage and point-of-sale innovations";
aidx[13] = "13";

imgarr[14] = new Image();
imgarr[14].src = "images/t14.jpg";
title[14] = "New green technology could eventually result in the doubling of battery life for mobile devices and other power savings.";
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;
  }
}
