<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var currentdate = 0
var core = 0
function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
  }
}
image = new StringArray(27)
image[0] = '07photos/27.jpg'
image[1] = '07photos/1.jpg'
image[2] = '07photos/2.jpg'
image[3] = '07photos/3.jpg'
image[4] = '07photos/4.jpg'
image[5] = '07photos/5.jpg'
image[6] = '07photos/6.jpg'
image[7] = '07photos/7.jpg'
image[8] = '07photos/8.jpg'
image[9] = '07photos/9.jpg'
image[10] = '07photos/10.jpg'
image[11] = '07photos/11.jpg'
image[12] = '07photos/12.jpg'
image[13] = '07photos/13.jpg'
image[14] = '07photos/14.jpg'
image[15] = '07photos/15.jpg'
image[16] = '07photos/16.jpg'
image[17] = '07photos/17.jpg'
image[18] = '07photos/18.jpg'
image[19] = '07photos/19.jpg'
image[20] = '07photos/20.jpg'
image[21] = '07photos/21.jpg'
image[22] = '07photos/22.jpg'
image[23] = '07photos/23.jpg'
image[24] = '07photos/24.jpg'
image[25] = '07photos/25.jpg'
image[26] = '07photos/26.jpg'

var ran = 60/image.length
function ranimage() {
  currentdate = new Date()
  core = currentdate.getSeconds()
  core = Math.floor(core/ran)
    return(image[core])
}
document.write("<img src='" +ranimage()+ "'>")
//-->
