// JavaScript Document
var thisForm = "imageswitch";

// load field names and default values into list
var theImages = new Array() //
theImages[0] = '/images/flaunting-money.jpg'
theImages[1] = '/images/lady-on-laptop.jpg'
theImages[2] = '/images/stacks-of-money.jpg'
theImages[3] = '/images/money-in-hand.jpg'
theImages[4] = '/images/girl-fanning-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="Get the pay day loan information you need to make a smart decision!" />');
}

