// JavaScript Document

var images = ["images/index_image_1.jpg",  
"images/index_image_2.jpg",    
];
Event.observe(window, "load", function() {  
	new Blender("image_1", images, {
	fadeDuration: 2.0,
	displayDuration: 5
	});
});  
<!--

// 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/AF8F57.gif";
backImage[1] = "images/333333.gif";
backImage[2] = "images/666666.gif";
backImage[3] = "images/999999.gif";
backImage[4] = "images/cccccc.gif";
backImage[5] = "";

 
function iterator(item) {
  var img = new Image();
  img.src = item;
}

backImage.each(iterator);

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

function changeBGImage(whichImage){
if (document.body){
document.body.background = backImage[whichImage];
}
}
