// JavaScript Document

<!-- 
function VecImagenes()
{
  n=0;
  this[n++]="images/cabezote_pano01.jpg";
  this[n++]="images/cabezote_pano02.jpg";
  this[n++]="images/cabezote_pano03.jpg";
  this[n++]="images/cabezote_pano04.jpg";
  this[n++]="images/cabezote_pano05.jpg"
  this[n++]="images/cabezote_pano06.jpg"
  this[n++]="images/cabezote_pano07.jpg"
  this.N=n;
}
var Imagenes=new VecImagenes();
src= Imagenes[ Math.floor(Math.random() * Imagenes.N) ] ;
document.write("<IMG SRC="+src+">");
//-->

