var theImagesHome = new Array()
theImagesHome[0] = 'sarah_bricks_hotwife_01.jpg'
theImagesHome[1] = 'sarah_bricks_hotwife_02.jpg'
theImagesHome[2] = 'sarah_bricks_hotwife_03.jpg'
theImagesHome[3] = 'sarah_bricks_hotwife_04.jpg'
theImagesHome[4] = 'sarah_bricks_hotwife_05.jpg'
var jH = 0
var pH = theImagesHome.length;
var preBufferH = new Array()
for (iH = 0; iH < p; iH++){
   preBufferH[iH] = new Image()
   preBufferH[iH].src = theImagesHome[iH]
}
var whichImageHome = Math.round(Math.random()*(pH-1));
function showImageHome(){
document.write('<img src="http://www.sarahbricks.com/'+theImagesHome[whichImageHome]+'" width="150" height="197" border="1">');
}
