
  var max      = 11;
  var nrImages = 11
  function makeImages() {
    this[0]     = "lionelfalcon.gif";
    this[1]     = "CyPassos.gif";
    this[2]     = "nikole.gif";
    this[3]     = "PetCenter.jpg";
    this[4]     = "facebook.jpg";
	this[5]     = "myspace.jpg";
	this[6]    = "sonico.jpg";
	this[7]   = "twitter.jpg";
	this[8]   = "youtube.gif";
	this[9]   = "flickr.gif";
	this[10]   = "logo.jpg";
	    
	this.length = nrImages;
  }
  function makeLinks() {
    this[0]     = "http://www.lionelfalcon.com";
    this[1]     = "http://www.cecypassos.com";
    this[2]     = "http://www.nikole.com.br";
    this[3]     = "http://www.petcentermarginal.com.br";
   	this[4]     = "http://pt-br.facebook.com";
	this[5]    = "http://www.myspace.com/index.cfm?fuseaction=userTour.home";
	this[6]    = "http://www.sonico.com/u/15910659/Lionel_Falcon";
	this[7]   = "http://twitter.com/lionelfalcon";
	this[8]   = "http://www.youtube.com/results?search_query=lionelfalcon&page=1";
	this[9]   = "http://www.flickr.com/photos/28673135@N02/show/";
	this[10]   = "http://www.loswhippets.com.ar";
	
	
    this.length = nrImages;

  }
  var vetImages = new makeImages();
  var vetLinks  = new makeLinks();
  var x = Math.round(Math.random()*max);
  var y    = max / nrImages;
  for(var cont = 1;cont*y <= max;cont++) {
    if (x <= (cont*y)) {
      document.write("<a href="+vetLinks[cont-1]+" target=_blank><img  src="+vetImages[cont-1]+" border=0></a>");
      break;
    }
  }
