<!--
// 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(11)
image[0] = '-montage-01.jpg'
image[1] = '-montage-02.jpg'
image[2] = '-montage-03.jpg'
image[3] = '-montage-04.jpg'
image[4] = '-montage-05.jpg'
image[5] = '-montage-06.jpg'
image[6] = 'im1.jpg'
image[7] = 'im2.jpg'
image[8] = 'im3.jpg'
image[9] = 'im4.jpg'
image[10] = 'im5.jpg'
image[11] = '01.jpg'
image[12] = '02.jpg'
image[13] = '03.jpg'
image[14] = '04.jpg'
image[15] = '05.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='/images/layout/headers/mitweb" +ranimage()+  "' alt='Mitchell &amp; Webber' title='Mitchell &amp; Webber' />")

//-->