var Index1 = 2;

function SetTimer()
{
  var Timer = setInterval("Animate()", 6000);
}

function Animate()
{
  Index1 ++;
  if (Index1 >= 2) {
    Index1 = 0;
  }
  if (Index1 == 0){
	document.getElementById("rotator").src = "wp-content/themes/wmu/images/rotator/ceasfront.jpg";
  }
  else if (Index1 == 1){
	document.getElementById("rotator").src = "wp-content/themes/wmu/images/rotator/ceas1.jpg";
  }
  
}

