
// Copyright 2001 by www.CodeBelly.com

var backImage = new Array(); // don't change this

backImage[0] = "files/system/css/img/background.jpg";
backImage[1] = "files/system/css/img/background01.jpg";
backImage[2] = "files/system/css/img/background02.jpg";
backImage[3] = ""; 
// if no background is wanted

// Do not edit below this line.
//-----------------------------

function changeBGImage(whichImage){
if (document.body){
document.body.background = backImage[whichImage];
}
}


