var theImages = new Array() 

theImages[0] = 'images/rotate/1959_charlie-yup.jpg'
theImages[1] = 'images/rotate/1966_sherwood.jpg'
theImages[2] = 'images/rotate/altercation.jpg'
theImages[3] = 'images/rotate/beale-street.jpg'
theImages[4] = 'images/rotate/bowl-of-fruit.gif'
theImages[5] = 'images/rotate/buddy-boldens-eagle-band.jpg'
theImages[6] = 'images/rotate/bye-bye-basquiat.jpg'
theImages[7] = 'images/rotate/eddie-lockjaw-davis.jpg'
theImages[8] = 'images/rotate/five-of-them.jpg'
theImages[9] = 'images/rotate/flight.jpg'
theImages[10] = 'images/rotate/in-the-middle-of-the-day-zeus-did-it.jpg'
theImages[11] = 'images/rotate/king-of-samarkand.jpg'
theImages[12] = 'images/rotate/pfp-ate.gif'
theImages[13] = 'images/rotate/pfp-cooked.gif'
theImages[14] = 'images/rotate/pfp-drove.gif'
theImages[15] = 'images/rotate/pfp-groomed.gif'
theImages[16] = 'images/rotate/pfp-jived.gif'
theImages[17] = 'images/rotate/pfp-kissed.gif'
theImages[18] = 'images/rotate/pfp-quaffed.gif'
theImages[19] = 'images/rotate/pfp-smoked.gif'
theImages[20] = 'images/rotate/mambo-for-cats.gif'
theImages[21] = 'images/rotate/manhattan.gif'
theImages[22] = 'images/rotate/many-aspects-of-love.jpg'
theImages[23] = 'images/rotate/pete-jolly-duo.gif'
theImages[24] = 'images/rotate/piano-hands.jpg'
theImages[25] = 'images/rotate/portrait-of-joe-henderson.gif'
theImages[26] = 'images/rotate/sweets-and-jj-johnson.jpg'

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('<img src="'+theImages[whichImage]+'">');
}