<!-- 
// preload images
if (document.images) {
   theImages = new Array(3);
   for (i=0, n=theImages.length; i<n; i++) {
      theImages[i] = new Image();
      theImages[i].src='images_feature/thumb_0' + i + '.jpg';
   }
}

var CurrentImage = 1;
var Run = true;
var speed = 5000; // 5 seconds

function animate() {
   if (!document.images) return;
   if (!Run) return;
   document.images["thumbnail"].src = theImages[CurrentImage].src;
   CurrentImage++;
   if (CurrentImage > theImages.length-1) CurrentImage=0;
   setTimeout('animate()',speed);
}

links = new Array(
  'horse_details.cfm?SHID=36',
  'horse_details.cfm?SHID=9',
  'horse_details.cfm?SHID=35'
);

function go() {
   window.open(links[CurrentImage],'Icelandic','scrollBars=1,resizable=1,toolbar=1,menubar=1,status=1,width=600,height=400');
}
//-->


