var imgs = new Array(); var imglinks = new Array(); var altText = new Array(); var imgcnt = 0; var thisimg = 0;
altText[imgcnt] ='Suscríbete a nuestra newsletter y consigue un 10% de descuento en tu próximo alquiler'; 
imgs[imgcnt++] = 'http:\/\/www.elmundoencoche.com\/SPA\/aff\/C4L\/images\/jQuery-May2011.jpg';
altText[imgcnt] ='Suscríbete a nuestra newsletter y consigue un 10% de descuento en tu próximo alquiler';
imgs[imgcnt++] = 'http:\/\/www.elmundoencoche.com\/SPA\/aff\/C4L\/images\/jQuery-May2011-2.jpg';
altText[imgcnt] ='Suscríbete a nuestra newsletter y consigue un 10% de descuento en tu próximo alquiler';

function rotate() {
if (document.images) {
   thisimg++;
   if (thisimg >= imgcnt) thisimg = 0;
   crossfade(document.getElementById('rollimg'), imgs[thisimg], '2', altText[thisimg]);

/*
   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();",9000);
}
}
setTimeout("rotate();",7000);

