var thePics = new Array()
// Here is the picture array
thePics[1] = "images/splash_rotation/005.jpg"
thePics[2] = "images/splash_rotation/006.jpg"
thePics[3] = "images/splash_rotation/007.jpg"
thePics[4] = "images/splash_rotation/008.jpg"
thePics[5] = "images/splash_rotation/009.jpg"
thePics[6] = "images/splash_rotation/010.jpg"
var rn = Math.floor(Math.random() * thePics.length)
if (rn == 0) { rn = 4 }
document.write("<img src='"+thePics[rn]+"' width='324' height='243' alt='Richmond Friends School Students' border='0' />")
