// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'idx_abby'
theImages[1] = 'idx_benson'
theImages[2] = 'idx_twins'
theImages[3] = 'idx_dan'
theImages[4] = 'idx_david'
//theImages[5] = 'idx_frtony'
theImages[5] = 'idx_jim'
theImages[6] = 'idx_jose'
theImages[7] = 'idx_kim'
theImages[8] = 'idx_lanise'
theImages[9] = 'idx_zack'
theImages[10] = 'idx_zoe'


//theImages[0] = 'images/test01.gif'
//theImages[1] = 'images/test02.gif'
//theImages[2] = 'images/test03.gif'
//theImages[3] = 'images/test04.gif'

// do not edit anything below this line

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('<a href="edu_stories.html#'+theImages[whichImage]+'"><img src="images/'+theImages[whichImage]+'.jpg" width="682" height="300" border="0"></a>');
}

