// JavaScript Document

function random_imglink(){
var myimages=new Array()
myimages[1]="images/gallery/JPEG/poppies2.jpg"
myimages[2]="images/gallery/JPEG/shrouded_rose2.jpg"
myimages[3]="images/gallery/JPEG/trinity2.jpg"
var imagelinks=new Array()
imagelinks[1]="http://www.timfleming.com/zenphoto/index.php?album=scanner-art&image=poppies2.jpg"
imagelinks[2]="http://www.timfleming.com/zenphoto/index.php?album=scanner-art&image=shrouded_rose2.jpg" 
imagelinks[3]="http://www.timfleming.com/zenphoto/index.php?album=scanner-art&image=trinity.jpg"

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()