<!--

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

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

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

backColor[0] = '#471d03';
backColor[1] = '#ca4400';
backColor[2] = '#b9ba48';
backColor[3] = '#dcac00';
backColor[4] = '#6d8d23';
backColor[5] = '#900000';
backColor[6] = '#a9b6d9';

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

function changeBG(whichColor){
document.bgColor = backColor[whichColor];
}

//-->
