var ie=document.all;
var fotos=new Array();
fotos[0]="http://www.reygalan.com/img/representados/plastimodul.gif";
fotos[1]="http://www.reygalan.com/img/representados/perfilesgutierrezlasheras.gif";
fotos[2]="http://www.reygalan.com/img/representados/maderastejada.gif";
fotos[3]="http://www.reygalan.com/img/representados/priform.gif";
fotos[4]="http://www.reygalan.com/img/representados/leven.gif";
fotos[5]="http://www.reygalan.com/img/representados/MecanizacionHerrajesIbense.gif";
fotos[6]="http://www.reygalan.com/img/representados/arimex.gif";
pausa = 3;
ads=[]; contador=0;

function aleatoriza(targetarray){
 ultimateshowCopy=new Array()
 var the_one
 var z=0
 while (z<targetarray.length){
  the_one=Math.floor(Math.random()*targetarray.length)
  if (targetarray[the_one]!="_selected!"){
   ultimateshowCopy[z]=targetarray[the_one]
   targetarray[the_one]="_selected!"
   z++
  }
 }
 fotos=ultimateshowCopy;
}

function CambiaImagen() {
 var n=(contador+1)%fotos.length;
 if (ads[n] && (ads[n].complete || ads[n].complete==null)) {
  if (ie) document.images.carrusel_representados.filters[0].apply();
  document["carrusel_representados"].src = ads[contador=n].src;
  if (ie) document.images.carrusel_representados.filters[0].play();
 }
 ads[n=(contador+1)%fotos.length] = new Image;
 ads[n].src = fotos[n];
 setTimeout("CambiaImagen()",pausa*1000);
}

onload = function(){
 if (document.images){
 aleatoriza(fotos);
 CambiaImagen();
 }
} 