var currentdate = 0
var core = 0
function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' ' 
	} 
}
image = new StringArray(7)
image[0] = '../images/FP/Aaron3.jpg'
image[1] = '../images/FP/AngelaQ3.jpg'
image[2] = '../images/FP/Lori4.jpg'
image[3] = '../images/FP/Brian3.jpg'
image[4] = '../images/FP/LauraP4.jpg'
image[5] = '../images/FP/JessP3.jpg'
image[6] = '../images/FP/TerraB3.jpg'
image[7] = '../images/FP/KatieO4.jpg'
var ran = 60/image.length
function ranimage() {
  currentdate = new Date()
  core = currentdate.getSeconds()
  core = Math.floor(core/ran)
    return(image[core]) 
}
function showImage(){
document.write("<img src='" +ranimage()+ "' ALT='Actual employee, not a stock photo!' WIDTH='130' HEIGHT='140'>");
}

