//preload images
if (document.images) {
   theImages = new Array(5);
   for (i=1, n=theImages.length; i<n; i++) {
      theImages[i] = new Image();
      theImages[i].src='images/rotator/nutcracker' + i + '.jpg';
   }
}

var CurrentImage = 1;
var Run = true;
var speed = 2500; // 2.5 seconds

function animate() {
   if (!document.images) return;
   if (!Run) return;
   document.images["nutcracker"].src = theImages[CurrentImage].src;
   CurrentImage++;
   if (CurrentImage > theImages.length-1) CurrentImage=1;
   setTimeout('animate()',speed);
}

links = new Array(
  'http://www.netscape.com/',
  'http://www.microsoft.com/',
  'http://www.opera.com/',
  'http://www.neoplanet.com/',
  'http://www.experts-exchange.com/',
  'http://www.irt.org/'
);

function go() {
   window.open(links[CurrentImage],'_blank');
}
