function randimg() {

var img = new Array();
img[0] = 'http://www.holyfamilyradio.org/banners/h-hfr-1.png';
img[1] = 'http://www.holyfamilyradio.org/banners/h-hfr-2.png';
img[2] = 'http://www.holyfamilyradio.org/banners/h-hfr-3.png';
img[3] = 'http://www.louisvillelifenews.com/banners/h-lln-1.png';
img[4] = 'http://www.louisvillelifenews.com/banners/h-lln-2.png';
img[5] = 'http://www.louisvillelifenews.com/banners/h-lln-3.png';
img[6] = 'http://www.wlcr.org/banners/h-hlo-1.png';
img[7] = 'http://www.wlcr.org/banners/h-hlo-2.png';
img[8] = 'http://www.wlcr.org/banners/h-statefarm-1.png';
img[9] = 'http://www.wlcr.org/banners/h-caesars-1.png';
img[10] = 'http://www.wlcr.org/banners/comp.png';

var alt = new Array();
alt[0] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;Holy&nbsp;Family&nbsp;Radio';
alt[1] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;Holy&nbsp;Family&nbsp;Radio';
alt[2] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;Holy&nbsp;Family&nbsp;Radio';
alt[3] = 'Click&nbsp;here&nbsp;to&nbsp;visit$nbsp;Louisville&nbsp;Life&nbsp;News';
alt[4] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;Louisville&nbsp;Life&nbsp;News';
alt[5] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;Louisville&nbsp;Life&nbsp;News';
alt[6] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;Heuser&nbsp;Law&nbsp;Office';
alt[7] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;Heuser&nbsp;Law&nbsp;Office';
alt[8] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;State&nbsp;Farm';
alt[9] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;Little&nbsp;Heuser';
alt[10] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;Paul&nbsp;Heuser';

var link = new Array();
link[0] = 'http://www.holyfamilyradio.org/';
link[1] = 'http://www.holyfamilyradio.org/';
link[2] = 'http://www.holyfamilyradio.org/';
link[3] = 'http://www.louisvillelifenews.com/';
link[4] = 'http://www.louisvillelifenews.com/';
link[5] = 'http://www.louisvillelifenews.com/';
link[6] = 'http://www.heuserlawoffice.com/';
link[7] = 'http://www.heuserlawoffice.com/';
link[8] = 'http://www.statefarm.com/apps/agentLoc/AgentInformation.asp?na=US&st=17&ofc=1853';
link[9] = 'http://www.littlecaesars.com/';
link[10] = 'http://www.paulheuser.com/repair/';

num=Math.floor(Math.random()*img.length);

document.write(
'<a href=' + link[num] + ' target=&quot;_blank&quot;><img src=' + img[num] + ' alt=' + alt[num] + ' border=&quot;0&quot; /></a>'
	 );
}
randimg();
