
document.write("<A href='news.php?item.27.11' mce_href='news.php?item.27.11'><img id='TimedImage' src='e107_files/images/army.jpg' width='350' ></A>"); // to show images the same place

var c=1; // second picture to show
var t;

function timedCount()
{

  if (c == 0)
  {
    document.getElementById('TimedImage').src='e107_files/images/army.jpg';
  }
  else if (c == 1)
  {
    document.getElementById('TimedImage').src='e107_files/images/msg-115649665752.jpg';
  }
  else if (c == 2)
  {
    document.getElementById('TimedImage').src='e107_files/images/sniper.jpg';
  }

  c=c+1; 
  if (c == 3) { c=0;} // start over

  t=setTimeout('timedCount()',5000);
}


t=setTimeout('timedCount()',5000); // start the timer
