var currentdate = 0;
var ii = 0;
function tArray() {
this.length = tArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = tArray.arguments[i];
  }
}
image = new tArray(
"lafarge.jpg",
"freighter.jpg",
"foggy.jpg",
"shopping.jpg",
"christmaseve.jpg",
"lakesidedaisy.jpg"
);
text = new tArray(
"LaFarge Quarry",
"Freighter at Dock",
"Foggy Day at the Bay",
"Shopping on Main Street",
"Christmas Eve at the Tower",
"Lakeside Daisy"
);
var thedate = new Date();
var ii = thedate.getSeconds() % image.length;
var randomimage = image[ii];
var randomtext  = text[ii];
document.write('<img src=\"'+randomimage+'\" width="230" height="173" alt=\"'+randomtext+'\" />');