// JavaScript Document
var thisForm = "imageswitch";

// load field names and default values into list
var theImages = new Array() //
theImages[0] = '/images/payday-month.jpg'
theImages[1] = '/images/making-deals.jpg'
theImages[2] = '/images/friend-group.jpg'
theImages[3] = '/images/pink-hoodie.jpg'
theImages[4] = '/images/change-sack.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="It is time to End Payday Loans and get the cash advance that will help you!" />');
}

