<!--
Browser = false;

if (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) >= 4) {
   Browser = true
}

if (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 3) {
   Browser = true
}

if(Browser)
{
   Browser = true;
   image1a = new Image(); image1a.src = "images/topimages/image1.jpg";
   image2a = new Image(); image2a.src = "images/topimages/image2.jpg";
   image3a = new Image(); image3a.src = "images/topimages/image3.jpg";
   image4a = new Image(); image4a.src = "images/topimages/image4.jpg";
   image5a = new Image(); image5a.src = "images/topimages/image5.jpg";
   image1b = new Image(); image1b.src = "images/topimages/image6.jpg";
   image2b = new Image(); image2b.src = "images/topimages/image7.jpg";
   image3b = new Image(); image3b.src = "images/topimages/image8.jpg";
   image4b = new Image(); image4b.src = "images/topimages/image9.jpg";
   image5b = new Image(); image5b.src = "images/topimages/image10.jpg";
}

function byt(place, imgName) {
   if (Browser == true) {
      document[place].src =eval(imgName + ".src");
   }
}

var curimg = 0;

function rotateImages()
{
   if (curimg == 10) { curimg = 0; }

   if (curimg == 0) { byt('first', 'image1b'); }
   if (curimg == 1) { byt('second' , 'image2b'); }
   if (curimg == 2) { byt('third' , 'image3b'); }
   if (curimg == 3) { byt('fourth', 'image4b'); }
   if (curimg == 4) { byt('fifth', 'image5b'); }
   if (curimg == 5) { byt('first', 'image1a'); }
   if (curimg == 6) { byt('second' , 'image2a'); }
   if (curimg == 7) { byt('third' , 'image3a'); }
   if (curimg == 8) { byt('fourth', 'image4a'); }
   if (curimg == 9) { byt('fifth', 'image5a'); }

   curimg++;
   setTimeout("rotateImages()",1500);
}
//-->
