<!--

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="images/09soccerw.jpg"
myimages[2]="images/09golfw.jpg"
myimages[3]="images/09crossw.jpg"
myimages[4]="images/09vballw.jpg"
myimages[5]="images/09soccerm.jpg"
myimages[6]="images/09golfm.jpg"
myimages[7]="images/09crossm.jpg"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.aquinas.edu/athletics/womens_soccer.html"
imagelinks[2]="http://www.aquinas.edu/athletics/womens_golf.html"
imagelinks[3]="http://www.aquinas.edu/athletics/womens_cross.html"
imagelinks[4]="http://www.aquinas.edu/athletics/womens_vball.html"
imagelinks[5]="http://www.aquinas.edu/athletics/mens_soccer.html"
imagelinks[6]="http://www.aquinas.edu/athletics/mens_golf.html"
imagelinks[7]="http://www.aquinas.edu/athletics/mens_cross.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 alt=""></a>')
}
random_imglink()
//-->