// JavaScript Document
var thisForm = "imageswitch";

// load field names and default values into list
var theImages = new Array() //
theImages[0] = '/images/big-smile.jpg'
theImages[1] = '/images/moving-in.jpg'
theImages[2] = '/images/red-pink.jpg'
theImages[3] = '/images/laptop-purchase.jpg'
theImages[4] = '/images/new-piggy-bank.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));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'" id="main-pic" alt="Let CashLoanInfo.com help you find the cash loan information you need!" />');
}

