<!--

var date = 0
var cor = 0

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

image = new StringArray(6)
image[0] = 'imgHome01.jpg'
image[1] = 'imgHome02.jpg'
image[2] = 'imgHome03.jpg'
image[3] = 'imgHome04.jpg'
image[4] = 'imgHome05.jpg'
image[5] = 'imgHome06.jpg'


var ran = 1000/image.length

function ranimage() {
  date = new Date()
  cor = date.getMilliseconds()
  cor = Math.floor(cor/ran)
    return(image[cor])
}


if (ranimage() == 'imgHome01.jpg')
document.write("<td class=\"menuCell\" style=\"background-image: url(images/home/" +ranimage()+ ");\">")

if (ranimage() == 'imgHome02.jpg')
document.write("<td class=\"menuCell\" style=\"background-image: url(images/home/" +ranimage()+ ");\">")

if (ranimage() == 'imgHome03.jpg')
document.write("<td class=\"menuCell\" style=\"background-image: url(images/home/" +ranimage()+ ");\">")

if (ranimage() == 'imgHome04.jpg')
document.write("<td class=\"menuCell\" style=\"background-image: url(images/home/" +ranimage()+ ");\">")

if (ranimage() == 'imgHome05.jpg')
document.write("<td class=\"menuCell\" style=\"background-image: url(images/home/" +ranimage()+ ");\">")

if (ranimage() == 'imgHome06.jpg')
document.write("<td class=\"menuCell\" style=\"background-image: url(images/home/" +ranimage()+ ");\">")


//-->