// JavaScript Document
// Copyright 2001 by www.CodeBelly.com
// Please do *not* remove this notice.

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] = "images/bg0.jpg";
backImage[1] = "images/bg1.jpg";
backImage[2] = "images/bg2.jpg";
backImage[3] = "images/bg3.jpg";
backImage[4] = "images/bg4.jpg";
backImage[5] = "images/bg5.jpg";


// Do not edit below this line.
//-----------------------------
function changeBGImage(whichImage){
if (document.body){
document.body.background = backImage[whichImage];
}
}
