function random_imglink(){
var myimages=new Array()
//random images
myimages[1]="/Depts/FLL/images/2/1.jpg" 
myimages[2]="/Depts/FLL/images/2/2.jpg"
myimages[3]="/Depts/FLL/images/2/3.jpg"
myimages[4]="/Depts/FLL/images/2/4.jpg"
myimages[5]="/Depts/FLL/images/2/5.jpg"
myimages[6]="/Depts/FLL/images/2/6.jpg"
myimages[7]="/Depts/FLL/images/2/7.jpg"
myimages[8]="/Depts/FLL/images/2/8.jpg"
myimages[9]="/Depts/FLL/images/2/9.jpg"
myimages[10]="/Depts/FLL/images/2/10.jpg"


//corresponding links
var imagelinks=new Array()
imagelinks[1]="/Depts/FLL/index.html"
imagelinks[2]="/Depts/FLL/index.html"
imagelinks[3]="/Depts/FLL/index.html"
imagelinks[4]="/Depts/FLL/index.html"
imagelinks[5]="/Depts/FLL/index.html"
imagelinks[6]="/Depts/FLL/index.html"
imagelinks[7]="/Depts/FLL/index.html"
imagelinks[8]="/Depts/FLL/index.html"
imagelinks[9]="/Depts/FLL/index.html"
imagelinks[10]="/Depts/FLL/index.html"


var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0></a>')
}
random_imglink()