 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.notionline.com.ar",
"http://www.notionline.com.ar",
"http://www.lagrossa.com.ar",
"http://www.tematika.com.ar",
"http://www.tematika.com.ar",
"http://www.filippofigari.com.ar"
);

image = new initArray(
"http://www.lacorchea.com/Banners/notionline_1.gif",
"http://www.lacorchea.com/Banners/notionline_2.gif",
"http://www.lacorchea.com/Banners/lagrossa_53.gif",
"http://www.lacorchea.com/Banners/tematika_banner_3.gif",
"http://www.lacorchea.com/Banners/tematika_banner_4.gif",
"http://www.lacorchea.com/Banners/filippo_figari_hor_53.gif"

);

text = new initArray(
"Notionline",
"Notionline",
"La Grossa",
"Tematika",
"Tematika",
"Filippo Figari"
);


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+ '\" target=\"_blank\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a>');

document.write('<table><tr><td></td></tr></table>');

