<!--
var currentdate = 0;
var core = 0;

function initArray() {

this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}

link = new initArray(
"http://www.tele-vicio.com",
"http://www.cinefania.com/twilight/",
"http://www.cinefania.com/"
);

image = new initArray(
"imagen/banner3.gif",
"imagen/banner2.gif",
"imagen/banner7.gif"
);

text = new initArray(
"Televicio, the site of the TV Classics in spanish",
"Twilight Zite, the Zite of the Imagination",
"Cinefania, online database of horror movies"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranlink  = link[core];
var ranimage = image[core];
var rantext  = text[core];

document.write('<a href=\"' +ranlink+ '\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\" width=460 height=60></a>');
//-->
