// 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 core3 = 0;

function initArray() {


this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}

image = new initArray(
"i/Aa005993.jpg",
"i/Aa014380.jpg",
"i/Aa031667.jpg",
"i/Aa036049.jpg",
"i/Bu001487.jpg"
);

altText = new initArray(
"family in front of large white house with a white picket fence",
"a couple shaking hands with realator in empty living room with hardwood floors and fireplace",
"small child watering garden with dad watching from background",
"realtor explaining paperwork to couple",
"family in front of garage with a 'for sale by owner' sign"
);

var currentdate = new Date();
var core3 = currentdate.getSeconds() % image.length;

var ranimage3 = image[core3];
var rantext3  = altText[core3];

document.write('<img src=\"'+ranimage3+'\" border="0" alt=\"'+rantext3+'\">');

