
var backImage = new Array(); // don't change this

// Enter the image filenames you wish to use.
// Follow the pattern to use more images.  The
// number in the brackets [] is the number you
// will use in the function call to pick each
// image.

// Note how backImage[3] = "" -- which would
// set the page to *no* background image.

backImage[0] = "bg/1.jpg";
backImage[1] = "bg/2.jpg";
backImage[2] = "bg/3.jpg";
backImage[3] = "bg/4.jpg";
backImage[4] = "bg/5.jpg";
backImage[5] = "bg/6.jpg";
backImage[6] = "bg/7.jpg";
backImage[7] = "bg/8.jpg";
backImage[8] = "bg/9.jpg";
backImage[9] = "bg/10.jpg";
backImage[10] = "bg/11.jpg";

// Do not edit below this line.
//-----------------------------

function changeBGImage(whichImage){
if (document.body){
document.body.background = backImage[whichImage];
}
}
