<!--

// Copyright 2001 by www.CodeBelly.com

var backImage = new Array(); // don't change this

backImage[1] = "backgrounds/crowd.jpg";
backImage[2] = "backgrounds/red.jpg";
backImage[3] = "backgrounds/orange.jpg";
backImage[4] = "backgrounds/blue_block.jpg";
backImage[5] = "backgrounds/moss.jpg";
backImage[6] = "backgrounds/splash.jpg";
backImage[7] = "backgrounds/radioactive.jpg";
backImage[8] = "backgrounds/fire.jpg";
backImage[9] = "backgrounds/butterfly.jpg";
backImage[10] = "backgrounds/blue_sky.jpg";
backImage[11] = "backgrounds/lion.jpg";
backImage[12] = "backgrounds/speed.jpg";
backImage[13] = "backgrounds/wall.jpg";

backImage[14] = "backgrounds/frankie.jpg";
backImage[15] = "backgrounds/dracula.jpg";



// Do not edit below this line.
//-----------------------------

function changeBGImage(whichImage){
if (document.body){
document.body.background = backImage[whichImage];
}
}

//-->