<!-- Begin

var theImages = new Array() 
var theLinks = new Array() 
var theTag = new Array() 

theImages[0] = 'images/spotlight/emily.gif'
theLinks[0] = 'beer/brewpub/pub.asp?ID=PUB-080202-W807'
theTag[0] = "Emily - Brewery Creek Inn"
theImages[1] = 'images/spotlight/lauralee.gif'
theLinks[1] = 'beer/brewpub/pub.asp?ID=PUB-081402-R564'
theTag[1] = "Lauralee - Great Dane Pub & Brewing Company"
theImages[2] = 'images/spotlight/genovieve.gif'
theLinks[2] = 'beer/brewpub/pub.asp?ID=PUB-081402-R564'
theTag[2] = "Genovieve - Great Dane Pub & Brewing Company"
theImages[3] = 'images/spotlight/jessica.gif'
theLinks[3] = 'beer/brewpub/pub.asp?ID=PUB-081602-N144'
theTag[3] = "Jessica - Minneapolis Town Hall Brewery"
theImages[4] = 'images/spotlight/amy.gif'
theLinks[4] = 'beer/brewpub/pub.asp?ID=PUB-081602-E240'
theTag[4] = "Amy - Barleys Alehouse 1"
theImages[5] = 'images/spotlight/gianna.gif'
theLinks[5] = 'beer//brewpub/pub.asp?ID=PUB-081602-E240'
theTag[5] = "Gianna - Barleys Alehouse 1"
theImages[6] = 'images/spotlight/jessica-oh.gif'
theLinks[6] = 'beer/brewpub/pub.asp?ID=PUB-081602-M255'
theTag[6] = "Jessica - Elevator Brewing Company"
theImages[7] = 'images/spotlight/kelly.gif'
theLinks[7] = 'beer/brewpub/pub.asp?ID=PUB-081502-G230'
theTag[7] = "Kelly - JT Whitneys Pub and Brewery"
theImages[8] = 'images/spotlight/jess.gif'
theLinks[8] = 'beer/brewpub/pub.asp?ID=PUB-081502-G230'
theTag[8] = "Jess - JT Whitneys Pub and Brewery"
theImages[9] = 'images/spotlight/carolyn.gif'
theLinks[9] = 'beer/brewpub/pub.asp?ID=PUB-081502-P264'
theTag[9] = "Carolyn - San Francisco Brewing Company"
theImages[10] = 'images/spotlight/heather.gif'
theLinks[10] = 'beer/brewpub/pub.asp?ID=PUB-081602-I423'
theTag[10] = "Heather - Bricktown Brewery"
theImages[11] = 'images/spotlight/jodi.gif'
theLinks[11] = 'beer/brewpub/pub.asp?ID=PUB-081602-I423'
theTag[11] = "Jodi - Bricktown Brewery"
theImages[12] = 'images/spotlight/kerry.gif'
theLinks[12] = 'beer/brewpub/pub.asp?ID=PUB-080602-I298'
theTag[12] = "Kerry - Brewamsters Pub"

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
//function showImage(){
document.write('<a href="'+theLinks[whichImage]+'"');
//document.write('<a href="'+theLinks[13]+'"');
document.write(' onmouseover="window.status=');
document.write("'"+theTag[whichImage]+"'");
//document.write("'"+theTag[13]+"'");
document.write(';return true"');
document.write(' onmouseout="window.status=');
document.write("''");
document.write(';return true"');
document.write('>');
//document.write('<img src="'+theImages[13]+'" border="0">');
document.write('<img src="'+theImages[whichImage]+'" border="0">');
document.write('<br><align="right">[Random Spotlight]</align>');
document.write('</a>');
//}

//  End -->