<!--
// 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(30)
image[0] = '/other_photos/homepage/01.jpg'
image[1] = '/other_photos/homepage/02.jpg'
image[2] = '/other_photos/homepage/03.jpg'
image[3] = '/other_photos/homepage/04.jpg'
image[4] = '/other_photos/homepage/05.jpg'
image[5] = '/other_photos/homepage/06.jpg'
image[6] = '/other_photos/homepage/07.jpg'
image[7] = '/other_photos/homepage/08.jpg'
image[8] = '/other_photos/homepage/09.jpg'
image[9] = '/other_photos/homepage/10.jpg'
image[10] = '/other_photos/homepage/11.jpg'
image[11] = '/other_photos/homepage/12.jpg'
image[12] = '/other_photos/homepage/13.jpg'
image[13] = '/other_photos/homepage/14.jpg'
image[14] = '/other_photos/homepage/15.jpg'
image[15] = '/other_photos/homepage/16.jpg'
image[16] = '/other_photos/homepage/17.jpg'
image[17] = '/other_photos/homepage/18.jpg'
image[18] = '/other_photos/homepage/19.jpg'
image[19] = '/other_photos/homepage/20.jpg'
image[20] = '/other_photos/homepage/21.jpg'
image[21] = '/other_photos/homepage/22.jpg'
image[22] = '/other_photos/homepage/23.jpg'
image[23] = '/other_photos/homepage/24.jpg'
image[24] = '/other_photos/homepage/25.jpg'
image[25] = '/other_photos/homepage/26.jpg'
image[26] = '/other_photos/homepage/27.jpg'
image[27] = '/other_photos/homepage/28.jpg'
image[28] = '/other_photos/homepage/29.jpg'
image[29] = '/other_photos/homepage/30.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()+ "'>")

//-->