// 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(10)image[0] = 'images/home/doll.jpg'image[1] = 'images/home/pier-turbo.jpg'image[2] = 'images/home/turbo.jpg'image[3] = 'images/home/pier-wild.jpg'image[4] = 'images/home/forest.jpg'image[5] = 'images/home/field.jpg'image[6] = 'images/home/pony.jpg'image[7] = 'images/home/graffiti.jpg'image[8] = 'images/home/airport.jpg'image[9] = 'images/home/cake.jpg'var ran = 60/image.lengthfunction ranimage() {  currentdate = new Date()// this isn't very random//  core = currentdate.getSeconds()// this, however, isvar randomnumber=Math.floor(Math.random()*60)  core = Math.floor(randomnumber/ran)    return(image[core])}