var thePics = new Array()
// Here is the picture array
thePics[0] = "images/education.jpg"
thePics[1] = "images/stewardship.jpg"
thePics[2] = "images/gorp.jpg"
var rn = Math.floor(Math.random() * thePics.length)
//if (rn == 0) { rn = 3 }
document.write("<img src='"+thePics[rn]+"' width='634' height='288' align='left' alt='Ohio River Foundation' border='0' />")

