<!-- go to j-scripts.com
var thePics = new Array()
thePics[1] = "comics/lazy.jpg"
thePics[2] = "comics/comic.jpg"
thePics[3] = "comics/same_lousy_staff_color.gif"
thePics[4] = "comics/beggar.jpg"
thePics[5] = "comics/nohablo.jpg"
thePics[6] = "comics/hulk.jpg"
thePics[7] = "comics/flipchart.jpg"
var rn = Math.floor(Math.random() * thePics.length)
if (rn == 0) {
  rn = 1
}
document.write("<img src='"+thePics[rn]+"' border=0>")
//-->