// Display Random Banner Ads

var title = new Array();
var notes = new Array();
var sites = new Array();

count = 0;

title[count]="CustomFit Computers";
notes[count]="We help you select, purchase and setup the system you need!";
sites[count]="http://www.customfitcomputers.biz";

count++;

title[count]="Dr. Steven J. Wineland";
notes[count]="Professional Family Eye Care With The Personal Touch since 1977!";
sites[count]="http://www.sjwineland.com";

count++;

title[count]="Labels For Less";
notes[count]="Flexographic Labels &amp; Offset Printing At Reasonable Prices!";
sites[count]="http://www.labels-4-less.com";

count++;

title[count]="Mayer &amp; Associates Event Planning Services";
notes[count]="We are the Image Makers of Wisconsin!";
sites[count]="http://www.mayerandassociates.com";

count++;

title[count]="River Bend Cabinetry";
notes[count]="Call Us Today For All Your Cabinetry Needs!";
sites[count]="http://www.riverbendcabinetry.com";

count++;

title[count]="Sheboygan County Writers&#39; Club";
notes[count]="Welcomes Beginning &amp; Advanced Writers. Please Join Us!";
sites[count]="http://www.sheboyganwriters.org";

count++;

title[count]="Sylvia Bright-Green";
notes[count]="Spiritual Consulting Services for Business and Private Parties!";
sites[count]="http://www.uncannygranny.com";

count++;

title[count]="Sylvia Bright-Green";
notes[count]="Free Lance Writer & Photographer";
sites[count]="http://www.sylviabright-green.com";


var items = Math.floor(Math.random()*title.length);

document.write('<table style="width:728px; height:90px; margin-left:auto; margin-right:auto; border:1px solid black; border-spacing:0px;">');
document.write('<tr style="background-image:url(http://www.rolandarms.com/home/image/links.png);">');
document.write('<td style="width:100%; padding:0px; text-align:center;">');
document.write('<p style="font-family:Arial, Helvetica, Sans Serif; font-size:10.0pt; text-align:center">');
document.write('<b>' + title[items] + '</b><br /> ' + notes[items] + ' <br /><a href=" ' + sites[items] + ' ">' + sites[items] + '</a>');
document.write('</p></td>');
document.write('</tr>');
document.write('</table>');
