var theImages = new Array() 


theImages[0] = '/hf/new_wrapper/header/values/people00.jpg'
theImages[1] = '/hf/new_wrapper/header/values/people01.jpg'
theImages[2] = '/hf/new_wrapper/header/values/people02.jpg'
theImages[3] = '/hf/new_wrapper/header/values/people03.jpg'
theImages[4] = '/hf/new_wrapper/header/values/people04.jpg'
theImages[5] = '/hf/new_wrapper/header/values/people05.jpg'
theImages[6] = '/hf/new_wrapper/header/values/people06.jpg'
theImages[7] = '/hf/new_wrapper/header/values/people07.jpg'
theImages[8] = '/hf/new_wrapper/header/values/people08.jpg'
theImages[9] = '/hf/new_wrapper/header/values/people09.jpg'
theImages[10] = '/hf/new_wrapper/header/values/people10.jpg'
theImages[11] = '/hf/new_wrapper/header/values/people11.jpg'
theImages[12] = '/hf/new_wrapper/header/values/people12.jpg'
theImages[13] = '/hf/new_wrapper/header/values/people13.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));
document.write('<style type="text/css"> .ImageLoader { background-image: url('+ theImages[whichImage] +') } </style>'); 

