<!--
// 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 =0; i < n; i++) {
    this[i] = ' '

  }
}

image = new StringArray(10)
image[0] = './images/menu_top0.jpg'
image[1] = './images/menu_top1.jpg'
image[2] = './images/menu_top2.jpg'
image[3] = './images/menu_top3.jpg'
image[4] = './images/menu_top4.jpg'
image[5] = './images/menu_top5.jpg'
image[6] = './images/menu_top6.jpg'
image[7] = './images/menu_top7.jpg'
image[8] = './images/menu_top8.jpg'
image[9] = './images/menu_top9.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()+ "' width='168' height='107' alt=''>")

//-->

