function VecImagenes()
{
	n=0;
	this[n++]="images/cabecero/1.jpg";
	this[n++]="images/cabecero/2.jpg";
	this[n++]="images/cabecero/3.jpg";
	this[n++]="images/cabecero/4.jpg";
	this[n++]="images/cabecero/5.jpg";
	this[n++]="images/cabecero/6.jpg";
	this[n++]="images/cabecero/7.jpg";
	this[n++]="images/cabecero/8.jpg";
	this[n++]="images/cabecero/9.jpg";


  this.N=n;
}

var Imagenes=new VecImagenes();

n=Math.floor(Math.random() * Imagenes.N)
src= Imagenes[n];
document.write("<img src="+src+" width='720' height='240'>");


