// JavaScript Document
function VecImagenes()
{
n=0;
this[n++]="imagenes/home/img23.jpg";
this[n++]="imagenes/home/img24.jpg";
this[n++]="imagenes/home/img25.jpg";
this[n++]="imagenes/home/img26.jpg";
this[n++]="imagenes/home/img27.jpg";
this[n++]="imagenes/home/img29.jpg";
this[n++]="imagenes/home/img31.jpg";
this[n++]="imagenes/home/img32.jpg";
this[n++]="imagenes/home/img40.jpg";
this.N=n;
}
var Imagenes=new VecImagenes();
src= Imagenes[ Math.floor(Math.random() * Imagenes.N) ] ;
document.write("<img src="+src+" vspace=5 hspace=10>");