var theImages = new Array() 


theImages[0] = '/hf/new_wrapper/header/image0.jpg'
theImages[1] = '/hf/new_wrapper/header/image1.jpg'
theImages[2] = '/hf/new_wrapper/header/image2.jpg'
theImages[3] = '/hf/new_wrapper/header/image3.jpg'
theImages[4] = '/hf/new_wrapper/header/image4.jpg'
theImages[5] = '/hf/new_wrapper/header/image5.jpg'
theImages[6] = '/hf/new_wrapper/header/image6.jpg'
theImages[7] = '/hf/new_wrapper/header/image7.jpg'
theImages[8] = '/hf/new_wrapper/header/image8.jpg'
theImages[9] = '/hf/new_wrapper/header/image9.jpg'
theImages[10] = '/hf/new_wrapper/header/image10.jpg'
theImages[11] = '/hf/new_wrapper/header/image11.jpg'
theImages[12] = '/hf/new_wrapper/header/image12.jpg'
theImages[13] = '/hf/new_wrapper/header/image13.jpg'
theImages[14] = '/hf/new_wrapper/header/image14.jpg'
theImages[15] = '/hf/new_wrapper/header/image15.jpg'
theImages[16] = '/hf/new_wrapper/header/image16.jpg'
theImages[17] = '/hf/new_wrapper/header/image17.jpg'
theImages[18] = '/hf/new_wrapper/header/image18.jpg'
theImages[19] = '/hf/new_wrapper/header/image19.jpg'
theImages[20] = '/hf/new_wrapper/header/image20.jpg'
theImages[21] = '/hf/new_wrapper/header/image21.jpg'
theImages[22] = '/hf/new_wrapper/header/image23.jpg'
theImages[23] = '/hf/new_wrapper/header/image23.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"> td.ImageLoader { background-image: url('+ theImages[whichImage] +'); background-repeat: no-repeat; background-position:top left; height: 166px; width: 802px} </style>'); 
