<!--
function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="assets/eventThemeLogos/bbqLoo_btn.gif"
myimages[2]="assets/eventThemeLogos/fridayLoo_btn.gif"
myimages[3]="assets/eventThemeLogos/hometownHeroes_btn.gif"
myimages[4]="assets/eventThemeLogos/tasteOfLoo_btn.gif"
myimages[5]="assets/eventThemeLogos/tourDeLoo_btn.gif"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="news_and_events.asp"
imagelinks[2]="news_and_events.asp"
imagelinks[3]="news_and_events.asp"
imagelinks[4]="news_and_events.asp"
imagelinks[5]="news_and_events.asp"

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()
//-->