var theImages2 = new Array() 

theImages2[0] = 'images/people/square021.jpg'
theImages2[1] = 'images/people/square022.jpg'
theImages2[2] = 'images/people/square023.jpg'
theImages2[3] = 'images/people/square024.jpg'
theImages2[4] = 'images/people/square025.jpg'
theImages2[5] = 'images/people/square026.jpg'
theImages2[6] = 'images/people/square027.jpg'
theImages2[7] = 'images/people/square028.jpg'
theImages2[8] = 'images/people/square029.jpg'
theImages2[9] = 'images/people/square030.jpg'
theImages2[10] = 'images/people/square031.jpg'
theImages2[11] = 'images/people/square032.jpg'
theImages2[12] = 'images/people/square033.jpg'
theImages2[13] = 'images/people/square034.jpg'
theImages2[14] = 'images/people/square035.jpg'
theImages2[15] = 'images/people/square036.jpg'
theImages2[16] = 'images/people/square037.jpg'
theImages2[17] = 'images/people/square038.jpg'
theImages2[18] = 'images/people/square039.jpg'
theImages2[19] = 'images/people/square040.jpg'


var j = 0
var p = theImages2.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages2[i]
}
var whichImage = Math.round(Math.random()*(p-1));
document.write('<img src="'+theImages2[whichImage]+'" style="float: left; margin: 20px 0px 0px 10px;" alt="People">');

