
var oImg = [

    {
    image:'../images/home/rotator/feature_duckfeb12.jpg',
    img: '',
    link:'http://www.mbl.edu/news/press_releases/2012_pr_02_16.html',
    alt: 'MBLŐs Hugh Ducklow Appointed to Antarctic Blue Ribbon Panel',
    target: '_self'
  },
    {
    image:'../images/home/rotator/feature_ibio_student.jpg',
    img: '',
    link:'http://www.ibiomagazine.org/issues/november-2011-issue/mbl-participants.html',
    alt: 'Why I Do Science',
    target: '_blank'
  },
    {
    image:'../images/home/rotator/feature_wilson11.jpg',
    img: '',
    link:'http://www.mbl.edu/news/features/borisy_wilson.html',
    alt: 'MBL President and Director Gary Borisy to Receive Award for Far-Reaching Contributions to Cell Biology',
    target: '_self'
  },
    {
    image:'../images/home/rotator/feature_clasi11.jpg',
    img: '',
    link:'http://www.mbl.edu/news/features/clasi_fish.html',
    alt: 'Meet the Neighbors',
    target: '_self'
  },
    {
    image:'../images/home/rotator/feature_photo2011.jpg',
    img: '',
    link:'http://www.mbl.edu/photo_contest/winners2011.html',
    alt: 'Photo Contest Winners Announced',
    target: '_self'
  },
    {
    image:'../images/home/rotator/feature_ibio.jpg',
    img: '',
    link:'http://www.mbl.edu/news/features/ibioseminars.html',
    alt: 'Ready for our closeup',
    target: '_self'
  }
];

var loaded = false;
var myTimer = 5000;
var step = 0;

function preLoad()
{
  for (var i = 0; i < oImg.length; i++)
  {
    oImg[i].img = new Image();
	  oImg[i].img.src = oImg[i].image;
  }

  loaded = true;
}

function imageRotate()
{
  var link = document.getElementById('irLink');
  var image = document.getElementById('irImg');

  if (!loaded)
  {
    preLoad();
  }
  
  if (step >= oImg.length)
  {
    step = 0;
  }

  link.href = oImg[step].link;
  link.target = oImg[step].target;
  image.src = oImg[step].img.src;
  image.alt = oImg[step].alt;

  step++;

  setTimeout('imageRotate()', myTimer);
}

window.onload = imageRotate;
