// JavaScript Document
var theImages = new Array()

// REPLACE THIS
theImages[0] = '/images/styles/178/9/blount_a.png';
theImages[1] = '/images/styles/178/9/blount_b.png';
theImages[2] = '/images/styles/178/9/blount_c.png';
theImages[3] = '/images/styles/178/9/blount_d.png';
theImages[4] = '/images/styles/178/9/blount_e.png';
theImages[5] = '/images/styles/178/9/blount_f.png';
theWidth     = 304;
theHeight    = 194;
// DONE REPLACE THIS

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]+'" border="0" width="'+theWidth+'" height="'+theHeight+'">');
}

