// JavaScript Document
var thisForm = "imageswitch";

// load field names and default values into list
var theImages = new Array() //
theImages[0] = '/images/flying-cash.jpg'
theImages[1] = '/images/cash-paper-dolls.jpg'
theImages[2] = '/images/cash-calculator.jpg'
theImages[3] = '/images/100-flying.jpg'
theImages[4] = '/images/pile-money.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="Start Now! Sign up for a cash advance loan today!" />');
}

