// JavaScript Document


//Edit this line to list all of your background images
var backgroundSrcs = new Array('/site/1163/copy-bg01.jpg', "/site/1163/copy-bg02.jpg", "/site/1163/copy-bg03.jpg", "/site/1163/copy-bg04.jpg", "/site/1163/copy-bg05.jpg", "/site/1163/copy-bg06.jpg", "/site/1163/copy-bg07.jpg", "/site/1163/copy-bg08.jpg", "/site/1163/copy-bg09.jpg", "/site/1163/copy-bg10.jpg", "/site/1163/copy-bg11.jpg")

function pickimage()
{
//This line picks an image at random from the list you entered above
var bgimage=backgroundSrcs[(Math.round(Math.random()*(backgroundSrcs.length-1)))]

//This line applies the background image to your masthead

document.getElementById("middle").style.background = "url('" + bgimage + "')  bottom right no-repeat #fff";
}
 
 
 
 
 
