<!--
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.abensrealty.com/listings/",
"http://www.abensrealty.com/listings/",
"http://www.abensrealty.com/listings/"
);

image = new initArray(
"http://www.abensrealty.com/images/justlisted.jpg",
"http://www.abensrealty.com/images/justlisted1.jpg",
"http://www.abensrealty.com/images/justlisted2.jpg"
);

text = new initArray(
"690 Main St., Stanhope, Beautiful Inside and Out!",
"615 East Second St., $115,000, One of a kind Home and Setting!",
"1017 Cedar St., $129,900, 4 Bedroom & Double Deep Garage!"
);

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=\"_top\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a>');

//-->

