<!-- // 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
//                         Images                                  -->

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(


);


image = new initArray(
"images/property01.jpg",
"images/interior01.jpg",
"images/property16.jpg",
"images/property38.jpg",
"images/property70.jpg",
"images/property71.jpg",
"images/property72.jpg",
"images/property81.jpg",
"images/vistacinema.jpg",
"images/propertyp20.jpg",
"images/propertyp21.jpg"
);

text = new initArray(
"Royal Pavilion",
"Interior of Port St. Charles",
"Schooner Bay",
"Glitter Bay",
"Schooner Bay",
"Schooner Bay aerial shot",
"Schooner Bay rooftops",
"Port St. Charles boats",
"Renovations to Vista Cinema",
"Queen Elizabeth Hospital",
"Queen Elizabeth Hospital"
);

height = new initArray(
"95",
"95",
"95",
"95",
"95",
"95",
"95",
"95",
"95",
"95",
"95"
);

width = new initArray(
"186",
"186",
"186",
"186",
"186",
"186",
"186",
"186",
"186",
"186",
"186"
);


var currentdate = new Date();
var core = currentdate.getSeconds() % text.length;
var imgheight  = height[core];
var imgwidth  = width[core];
var ranlink  = link[core];
var rantext  = text[core];
var ranimage = image[core];

document.write('<img src=\"' +ranimage+ '\" align="left" hspace="0" border="0" height=\"'+imgheight+'\" width=\"'+imgwidth+'\" alt=\"'+rantext+'\"></a>');








