// JavaScript Document
function random_imglink(){
var myimages=new Array(8)
myimages[1]="_global/images/lc01.jpg"
myimages[2]="_global/images/lc02.jpg"
myimages[3]="_global/images/lc03.jpg"
myimages[4]="_global/images/lc04.jpg"
myimages[5]="_global/images/lc05.jpg"
myimages[6]="_global/images/lc06.jpg"
myimages[7]="_global/images/lc07.jpg"
myimages[8]="_global/images/lc08.jpg"
var y=Math.round(Math.random()*8)
if (y==0) y=1
if (y>7.5) y=8
document.write('<img src="'+myimages[y]+'" border=0 name="image" ></a>')
}
random_imglink()
