// JavaScript Document

<!-- 
function VecImagenes()
{
  n=0;
  this[n++]="http://www.gorgeous-ibiza.com/image/foto_portada.jpg";   <!--primera imagen -->
  this[n++]="http://www.gorgeous-ibiza.com/image/foto_portada2.jpg"; <!--segunda imagen -->
  this[n++]="http://www.gorgeous-ibiza.com/image/foto_portada3.jpg"          <!--tercera imagen -->
  this[n++]="http://www.gorgeous-ibiza.com/image/foto_portada4.jpg"   <!--cuarta imagen -->
  this[n++]="http://www.gorgeous-ibiza.com/image/foto_portada5.jpg"       <!--quinta imagen -->
  this[n++]="http://www.gorgeous-ibiza.com/image/foto_portada6.jpg"   <!--sexta imagen -->
  this[n++]="http://www.gorgeous-ibiza.com/image/foto_portada7.jpg"    <!--séptima imagen -->
  this[n++]="http://www.gorgeous-ibiza.com/image/foto_portada8.jpg"       <!--octava imagen -->
  this[n++]="http://www.gorgeous-ibiza.com/image/foto_portada9.jpg"      <!--novena imagen -->
  this[n++]="http://www.gorgeous-ibiza.com/image/foto_portada10.jpg"      <!--décima imagen -->
  this[n++]="http://www.gorgeous-ibiza.com/image/foto_portada11.jpg"      <!--once imagen -->
  this[n++]="http://www.gorgeous-ibiza.com/image/foto_portada12.jpg"      <!--doce imagen -->
  this[n++]="http://www.gorgeous-ibiza.com/image/foto_portada13.jpg"      <!--trece imagen -->
  this.N=n;
}
var Imagenes=new VecImagenes();
src= Imagenes[ Math.floor(Math.random() * Imagenes.N) ] ;
document.write("<IMG SRC="+src+">");
//-->
