<!-- Begin
// 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] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock001.jpg'
theImages[1] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock002.jpg'
theImages[2] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock003.jpg'
theImages[3] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock004.jpg'
theImages[4] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock005.jpg'
theImages[5] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock006.jpg'
theImages[6] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock007.jpg'
theImages[7] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock008.jpg'
theImages[8] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock009.jpg'
theImages[9] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock010.jpg'
theImages[10] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock011.jpg'
theImages[11] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock012.jpg'
theImages[12] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock013.jpg'
theImages[13] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock014.jpg'
theImages[14] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock015.jpg'
theImages[15] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock016.jpg'
theImages[16] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock017.jpg'
theImages[17] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock018.jpg'
theImages[18] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock019.jpg'
theImages[19] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock020.jpg'
theImages[20] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock021.jpg'
theImages[21] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock022.jpg'
theImages[22] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock023.jpg'
theImages[23] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock024.jpg'
theImages[24] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock025.jpg'
theImages[25] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock026.jpg'
theImages[26] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock027.jpg'
theImages[27] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock028.jpg'
theImages[28] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock029.jpg'
theImages[29] = 'http://www.swallowhillmusic.org/music_school/pictures/randomstock/Stock030.jpg'

// 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('<img src="'+theImages[whichImage]+'" border="1">');
}
//  End -->