<!--
// original content taken from Nic's JavaScript Page with permission
// lack of these three lines will result in copyright infringment
// made by: Nic's JavaScript Page - http://www.javascript-page.com

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];
  }
}

image = new initArray(
"http://www.evlbi.org/graphics/banner/evnbanner_ar.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_cm.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_ef.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_hh.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_jb1.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_jb2.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_mc.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_mh.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_nt.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_on60.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_on85.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_sh.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_tr.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_ur.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_wb.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_wz.gif",
"http://www.evlbi.org/graphics/banner/evnbanner_yb.gif"
);

text = new initArray(
"Arecibo 305-m telescope",
"Cambridge 32-m telescope",
"Effelsberg 100-m telescope",
"Hartebeesthoek 25-m telescope",
"Lovell 76-m telescope",
"Mark2 25-m telescope",
"Medicina 25-m telescope",
"Metsahovi 14-m telescope",
"Noto 25-m telescope",
"Onsala 20-m telescope",
"Onsala 25-m telescope",
"Shanghai 25-m telescope",
"Torun 32-m telescope",
"Urumqi 25-m telescope",
"Westerbork 14x25m telescope",
"Wettzell 20-m telescope",
"Yebes 14-m telescope"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranimage = image[core];
var rantext  = text[core];

document.write('<img src=\"'+ranimage+'\" alt=\"'+rantext+'\" width=\"538px\" height=\"88px\">');

//-->
