<!-- Begin Random Banner Code -->
<!-- hide from JavaScript-challenged browsers
//store the banners in arrays
link = new Array(21);
graphic = new Array(21);
width = new Array(21);
height = new Array(21);
alt = new Array(21);
link[0] = "http://www.beerchurch.com/";
graphic[0] = "BCbanner2.gif";
width[0] = "468";
height[0] = "60";
alt[0] = "Because beer is good... and you are worthy.";
link[1] = "http://www.realbeer.com/";
graphic[1] = "RealBeer.jpg";
width[1] = "468";
height[1] = "60";
alt[1] = "Everything you could ever want to know about beer.";
link[2] = "http://www.arrogantbastard.com/";
graphic[2] = "arrogantbastardbanner.gif";
width[2] = "468";
height[2] = "60";
alt[2] = "This is an aggressive beer. You probably won't like it.";
link[3] = "http://www.beerhunter.com/";
graphic[3] = "http://www.beerhunter.com/images/linkbanner1.jpg";
width[3] = "468";
height[3] = "60";
alt[3] = "The Beer Hunter - published by Real Beer Inc.";
link[4] = "http://www.samadams.com/";
graphic[4] = "SA-link-banner.gif";
width[4] = "468";
height[4] = "60";
alt[4] = "America's World-Class Beer.";
link[5] = "http://www.tobp.com/";
graphic[5] = "obp.gif";
width[5] = "468";
height[5] = "60";
alt[5] = "If you like real beer, this is the place for you.";
link[6] = "http://www.beerhistory.com/";
graphic[6] = "abhp1.gif";
width[6] = "468";
height[6] = "60";
alt[6] = "Learn about the rich history of beer, brewing and breweries in America.";
link[7] = "http://www.ncoast-brewing.com/";
graphic[7] = "18518-002.jpg";
width[7] = "468";
height[7] = "60";
alt[7] = "A Beverage Testing Institute Top Ten Breweries of the World.";
link[8] = "http://www.orval.be/";
graphic[8] = "orval.gif";
width[8] = "468";
height[8] = "60";
alt[8] = "Beer was first and foremost considered for its nourishing properties; it was called liquid bread.";
link[9] = "http://www.chimay.be/";
graphic[9] = "chimay.gif";
width[9] = "468";
height[9] = "60";
alt[9] = "A beer brewed with knowledge is tasted with wisdom.";
link[10] = "http://www.newcastlebrown.com/";
graphic[10] = "newcastlebrown_banner1.gif";
width[10] = "468";
height[10] = "60";
alt[10] = "Newcastle Brown Ale - The one and only.";
link[11] = "http://beer.tradeworlds.com/";
graphic[11] = "beertradeworlds.gif";
width[11] = "468";
height[11] = "60";
alt[11] = "Beer Vertical Portal-Tradeworlds";
link[12] = "http://www.breweriana.com/";
graphic[12] = "breweriana_banner.gif";
width[12] = "465";
height[12] = "102";
alt[12] = "Click Here to Sell Beer Cans and Breweriana!";
link[13] = "http://www.brauerei-weihenstephan.de/";
graphic[13] = "weihenstephaner_banner.jpg";
width[13] = "468";
height[13] = "60";
alt[13] = "Weihenstephan - The world's oldest brewery (since 1040).";
link[14] = "http://store.merchantduvin.com/";
graphic[14] = "23151-010.gif";
width[14] = "468";
height[14] = "60";
alt[14] = "The Finest Collection of Beer & Gear in the World.";
link[15] = "http://www.allaboutbeer.com/";
graphic[15] = "aabmbanner2.gif";
width[15] = "468";
height[15] = "60";
alt[15] = "Click here to get your beer!";
link[16] = "http://www.duvel.be/";
graphic[16] = "duvelbanner.gif";
width[16] = "468";
height[16] = "60";
alt[16] = "A divine process of blending pure spring water, hops and fermented barley sprouts.";
link[17] = "http://www.fullers.co.uk/";
graphic[17] = "fullers_banner.gif";
width[17] = "468";
height[17] = "60";
alt[17] = "Welcome to the web site of Fuller, Smith & Turner P.L.C.";
link[18] = "http://www.brewguild.com/";
graphic[18] = "tbg_banner.gif";
width[18] = "468";
height[18] = "60";
alt[18] = "Quality products for those who appreciate outstanding beer.";
link[19] = "http://www.worldofbeer.com/";
graphic[19] = "WorldOfBeer.gif";
width[19] = "468";
height[19] = "60";
alt[19] = "The best in beer... from around the globe.";
link[20] = "http://www.saintarnold.com/";
graphic[20] = "starnolds-banner.jpg";
width[20] = "468";
height[20] = "60";
alt[20] = "Saint Arnold Brewing Company - The finest beers and ales in Texas.";
//calculate a random index
index = Math.floor(Math.random() * link.length);
//display the banner
document.write("<DL>\n");
document.write("<DT>" +"<center>");
document.write("</DT>");
document.write("<DT>" +
"<a href='"+link[index]+"' target='_TOP'>"+"<img src='"+graphic[index]+"' border=0 height="+height[index]+" width="+width[index]+"></a>");
document.write("</DT>");
document.write("<DT>" +
"<a href='"+link[index]+"' target='_TOP'>"+"<font size='-2' color='black' face='Arial,Helvetica,sans-serif'>"+alt[index]+"</font></a>");
document.write("</DT>");
document.write("<DT>" +"</center>");
document.write("</DT>\n");
document.write("</DL>\n");
//done
// done hiding-->
<!-- End Random Banner Code -->
