//PHOTO ARRAY FOR DISTRICT HOME PAGE

var theImages = new Array()
theImages[0] = 'images/arrayPics/schuyHParray_pic0.jpg'
theImages[1] = 'images/arrayPics/schuyHParray_pic1.jpg'
theImages[2] = 'images/arrayPics/schuyHParray_pic2.jpg'
theImages[3] = 'images/arrayPics/schuyHParray_pic3.jpg'
theImages[4] = 'images/arrayPics/schuyHParray_pic4.jpg'
theImages[5] = 'images/arrayPics/schuyHParray_pic5.jpg'
theImages[6] = 'images/arrayPics/schuyHParray_pic6.jpg'
theImages[7] = 'images/arrayPics/schuyHParray_pic7.jpg'
theImages[8] = 'images/arrayPics/schuyHParray_pic8.jpg'
theImages[9] = 'images/arrayPics/schuyHParray_pic9.jpg'
theImages[10] = 'images/arrayPics/schuyHParray_pic10.jpg'
theImages[11] = 'images/arrayPics/schuyHParray_pic11.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]+'" alt="various photos of students in the Schuylerville Central School District">');
}

