<!--
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] = '../images/fishbin/7a.gif'
image[1] = '../images/fishbin/7b.gif'
image[2] = '../images/fishbin/7c.gif'
image[3] = '../images/fishbin/7d.gif'


var ran = 60/image.length
function ranimage() {
  currentdate = new Date()
  core = currentdate.getSeconds()
  core = Math.floor(core/ran)
    return(image[core])
}
document.write("<img  WIDTH=198 HEIGHT=120 src='" +ranimage()+ "'>")
//-->