// rh 03/01/2006 Created.


var iWhichOneToShow = -1;
function loadImage()
{

  if(iWhichOneToShow == imageArray.length-1)
  {
    iWhichOneToShow = 0;
  }
  else
  {
    iWhichOneToShow = iWhichOneToShow + 1;
  }

  document['roll_image'].src=imageArray[iWhichOneToShow];
  document['roll_text'].src=textArray[iWhichOneToShow];

  //Change the number to change the speed (the fewer, the faster)
  TimerID = setTimeout("loadImage()", 15000);
}

function wheretogo()
{
  window.location.href=pageArray[iWhichOneToShow];
}