var theImages3 = new Array() 

theImages3[0] = 'images/people/square041.jpg'
theImages3[1] = 'images/people/square042.jpg'
theImages3[2] = 'images/people/square043.jpg'
theImages3[3] = 'images/people/square044.jpg'
theImages3[4] = 'images/people/square045.jpg'
theImages3[5] = 'images/people/square046.jpg'
theImages3[6] = 'images/people/square047.jpg'
theImages3[7] = 'images/people/square048.jpg'
theImages3[8] = 'images/people/square049.jpg'
theImages3[9] = 'images/people/square050.jpg'
theImages3[10] = 'images/people/square051.jpg'
theImages3[11] = 'images/people/square052.jpg'
theImages3[12] = 'images/people/square053.jpg'
theImages3[13] = 'images/people/square054.jpg'
theImages3[14] = 'images/people/square055.jpg'
theImages3[15] = 'images/people/square056.jpg'



var j = 0
var p = theImages3.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages3[i]
}
var whichImage = Math.round(Math.random()*(p-1));
document.write('<img src="'+theImages3[whichImage]+'" style="float: left; margin: 10px 0px 0px 15px;" alt="People">');


