
<!--
// 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(4)
image[0] = './img/grote_foto_1.jpg'
image[1] = './img/grote_foto_2.jpg'
image[2] = './img/grote_foto_3.jpg'
image[3] = './img/grote_foto_4.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()+ "' style=\"border:0px; width:495px; \" alt=\"Brabander Fotografie\">")

//-->


