<!--
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(
"html/plates/pl16.html",
"html/plates/pl17.html",
"html/plates/lr_c_1.html",
"html/plates/mp_21.html",
"html/plates/h_25.html",
"html/plates/pl82.html",
"html/plates/pl27.html",
"html/plates/mp_80.html",
"html/plates/ns11.html",
"html/plates/pl46.html"
);

image = new initArray(
"images/front_page/pl16_home.gif",
"images/front_page/pl17_home.gif",
"images/front_page/lr_c_1_home.gif",
"images/front_page/mp_21_home.gif",
"images/front_page/h_25_home.gif",
"images/front_page/pl82_home.gif",
"images/front_page/pl27_home.gif",
"images/front_page/mp_80_home.gif",
"images/front_page/ns11_home.gif",
"images/front_page/pl46_home.gif"
);

text = new initArray(
"click here",
"click here",
"click here",
"click here",
"click here",
"click here",
"click here",
"click here",
"click here",
"click here"
);


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 border="0" src=\"'+ranimage+'\" width="250" height="400" vspace="10" alt=\"'+rantext+'\"></a>');


//-->
