function randimg() {

var img = new Array();
img[0] = 'http://www.wlcr.org/banners/h-wlcr-1.png';
img[1] = 'http://www.wlcr.org/banners/h-wlcr-2.png';
img[2] = 'http://www.wlcr.org/banners/h-wlcr-3.png';
img[3] = 'http://www.holyfamilyradio.org/banners/h-hfr-1.png';
img[4] = 'http://www.holyfamilyradio.org/banners/h-hfr-2.png';
img[5] = 'http://www.holyfamilyradio.org/banners/h-hfr-3.png';
img[6] = 'http://www.wlcr.org/banners/h-hlo-3.png';

var alt = new Array();
alt[0] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;WLCR';
alt[1] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;WLCR';
alt[2] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;WLCR';
alt[3] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;Holy&nbsp;Family&nbsp;Radio';
alt[4] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;Holy&nbsp;Family&nbsp;Radio';
alt[5] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;Holy&nbsp;Family&nbsp;Radio';
alt[6] = 'Click&nbsp;here&nbsp;to&nbsp;visit&nbsp;Heuser&nbsp;Law&nbsp;Office';

var link = new Array();
link[0] = 'http://www.wlcr.org/';
link[1] = 'http://www.wlcr.org/';
link[2] = 'http://www.wlcr.org/';
link[3] = 'http://www.holyfamilyradio.org/';
link[4] = 'http://www.holyfamilyradio.org/';
link[5] = 'http://www.holyfamilyradio.org/';
link[6] = 'http://www.heuserlawoffice.com/';

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