var theImages = new Array()

//Add a new one at the bottom by copying and pasting a line.  theImages numbers must start at 0 and be chronological.
//Images must be exactly 200 by 150 pixels and the ALT tag should always be filled in with a title.
theImages[0] = '<IMG SRC="/images/homeimg/001.jpg" ALT="Ravens Nest 36 pajama party" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[1] = '<IMG SRC="/images/homeimg/002.jpg" ALT="John Mackey at Bull and Oyster Roast" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[2] = '<IMG SRC="/images/homeimg/005.jpg" ALT="Halloween Roast and Casino Night" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[3] = '<IMG SRC="/images/homeimg/006.jpg" ALT="Bull and Oyster Roast" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[4] = '<IMG SRC="/images/homeimg/007.jpg" ALT="Dutch Ruppersberger and Andy Zinkand at Nest 34 chili cook off"  BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[5] = '<IMG SRC="/images/homeimg/008.jpg" ALT="Mayor\'s Parade" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[6] = '<IMG SRC="/images/homeimg/009.jpg" ALT="Ravens Game Day Tailgate" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[7] = '<IMG SRC="/images/homeimg/011.jpg" ALT="Ray Lewis and Nest 8 Santa Claus" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[8] = '<IMG SRC="/images/homeimg/012.jpg" ALT="Ravens Nest 1" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[9] = '<IMG SRC="/images/homeimg/013.jpg" ALT="Ravens Nest 13" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[10] = '<IMG SRC="/images/homeimg/014.jpg" ALT="WQSR Best Tailgate Party" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[11] = '<IMG SRC="/images/homeimg/015.jpg" ALT="Ravens Nest 15 Parade Float" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[12] = '<IMG SRC="/images/homeimg/016.jpg" ALT="Andy at the 2008 Polar Bear Plunge" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[13] = '<IMG SRC="/images/homeimg/017.jpg" ALT="Andy at the 2008 Polar Bear Plunge" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[14] = '<IMG SRC="/images/homeimg/018.jpg" ALT="Liz & John of Nest 36 at BBQ Tailgate Competition" BORDER="0" WIDTH="150" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[15] = '<IMG SRC="/images/homeimg/019.jpg" ALT="Nest 36 Six Pack Abs Contest" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[16] = '<IMG SRC="/images/homeimg/020.jpg" ALT="Dutch Ruppersberger and Andy Zinkand at Nest 34 chili cook off" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[17] = '<IMG SRC="/images/homeimg/021.jpg" ALT="Spencer Folau & Jerry Brandt of Nest 36" BORDER="0" WIDTH="150" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[18] = '<IMG SRC="/images/homeimg/022.jpg" ALT="Nest 34 chili cook off" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
theImages[19] = '<IMG SRC="/images/homeimg/023.jpg" ALT="Nest 34 chili cook off" BORDER="0" WIDTH="200" HEIGHT="150" ALIGN="right" STYLE="margin-left: 20px; border: 1px solid #999999;">'
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(theImages[whichImage]);
}