var i=1;
var imgarray=new Array();
imgarray[1]="fotos/via1.jpg";
imgarray[2]="fotos/via2.jpg";
imgarray[3]="fotos/via3.jpg";
imgarray[4]="fotos/equipos1.jpg";
imgarray[5]="fotos/equipos2.jpg";
imgarray[6]="fotos/equipos3.jpg";

function doTrans() {
    imgObj.filters[0].apply();
    oImg.src = imgarray[i];
    i++;
if(i>=7){i=1;}
    imgObj.filters[0].play();
    setTimeout("doTrans()",5000); 
}
