//<script language="JavaScript">
<!--

// 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] = "museum.jpg";
backImage[1] = "";

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


function setBGColor(color)
{
	document.body.background = ""
	document.bgColor = '#7F997E';
}



function changeBGImage(whichImage)
{

   //newImage = "url(museum.jpg)";

	if(whichImage == 0)
	{
		newImage = "url(museum.jpg)";
		document.body.background = newImage;

	}
	else
	{
		newImage = "url()";
		document.bgColor = '#809A7F';

	}


if (document.body)
	{
document.body.background = backImage[whichImage];
}
//document.body.div.background = backImage[whichImage];
//document.getElementById('rootcontainerID').style.backgroundImage = backImage[whichImage];
//document.getElementById('bannerID').style.backgroundColor = "#000000";
//document.div("banner").style.backgroundColor = "#000000"}
//document.getElementById('bannerID').style.setProperty("background-color", "#000000");


// works
//document.getElementById('rootcontainerID').style.backgroundColor = "#000000";
//document.getElementById('bannerID').style.backgroundColor = "#000000";

// current effort
//document.getElementById('rootcontainerID').style.backgroundImage = newImage;

}
//-->
//</script>


