var imgs = new Array(); var imgcnt = 0; var thisimg = 0;
imgs[imgcnt++] = 'webimages/baldsale1.jpg';
imgs[imgcnt++] = 'webimages/baldsale2.jpg';

function rotate() {
if (document.images) {
   thisimg++;
   if (thisimg >= imgcnt) thisimg = 0;
   crossfade(document.getElementById('rollimg'), imgs[thisimg], '1');

/*
   if (document.rollimg.filters){
      document.rollimg.style.filter="blendTrans(duration=3)";
      document.rollimg.style.filter="blendTrans(duration=crossFadeDuration)";
      document.rollimg.filters.blendTrans.Apply();
   }
   document.rollimg.src = imgs[thisimg];
   if (document.rollimg.filters){
      document.rollimg.filters.blendTrans.Play();}
*/
   setTimeout("rotate();",8000);
}
}
setTimeout("rotate();",10000);