/*#####################################
Image set rotator
Author: John Murray
Site: www.tallosoft.com
Version 0.1a
####################################*/
var interval = 10;
var images = 5;
var current = 1;
var receptors = new Array();
receptors[0] = "big_image";

function imageRotation()
{
  if(current > images)
  {
    current = 1;
  }

  document.getElementById('big_image').src="/templates/sunspace/images/image" + current + "_large.gif";
  setTimeout('imageRotation()',interval * 1000);
  i = 0;
  current++;
}


