function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="http://anduril.ca/bible/images/logo-bsrc.jpg"
myimages[2]="http://anduril.ca/bible/images/logo-bsoftware.jpg"
myimages[3]="http://anduril.ca/movies/images/logo-film.jpg"
myimages[4]="http://anduril.ca/movies/images/logo-reel-bible.jpg"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://anduril.ca/bible/books.html"
imagelinks[2]="http://anduril.ca/bible/bible-software.html"
imagelinks[3]="http://anduril.ca/movies/great-movies.html"
imagelinks[4]="http://anduril.ca/movies/reel-bible.html"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" width="120" height="60" border="0" alt="" /></a>')
}
random_imglink()