// JavaScript Document
var randrep = new Array() 

randrep[0] = 'http://www.esehome.com/images/reps/rep1.jpg'
randrep[1] = 'http://www.esehome.com/images/reps/rep2.jpg'
randrep[2] = 'http://www.esehome.com/images/reps/rep3.jpg'


// do not edit anything below this line

var j = 0
var p = randrep.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = randrep[i]
}
var whichRep = Math.round(Math.random()*(p-1));
function showRep(){
document.write('<img src="'+randrep[whichRep]+'">');
}