<!-- IMAGE ANIMATOR --> <!-- This goes into the HEAD of the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2001, Sandeep Gangadharan --> <!-- For more free scripts go to http://www.sivamdesign.com/scripts/ --> <!-- var animate=0; function runBanner() { var photos=new Array() photos[0]="img1.gif" // change the name of the images at the left photos[1]="img2.gif" // you can add as many images as you want to this array photos[2]="img3.gif" load=new Image(200,60); // change the #s at the left to match the size of your images load.src="img1.gif"; load.src="img2.gif"; load.src="img3.gif"; if (photos.length > 0) { document.getElementById('banner').src=photos[animate]; animate++; if (animate==3) animate=0; // change the # 3 at the left to the maximum # of images you want included in your animation window.setTimeout("runBanner()", 2000); } // change the # on the left to adjust the speed of the } // animation. The smaller the # the faster the speed window.onload=runBanner; //--> </script> <!-- This goes into the BODY of the html file --> <form name="imgs"> <a href="http://www.sivamdesign.com/scripts/"><img src="" border="0" width="200" height="60" id="banner"></a> </form> <!-- change the URL in the <a> tag above to match your requirement -->