function f2() {
	var cf = new Crossfader( new Array('image2a','image2b','image2c','image2d','image2e'), 1000, 6000 );
}

function f3() {
	var cf = new Crossfader( new Array('image3a','image3b','image3c','image3d'), 1000, 6000 );
}

function pageLoad() {
	window.removeEventListener ? window.removeEventListener("load", pageLoad, false) : window.detachEvent("onload", pageLoad);

	// start the crossfader for the left-most image frame
	var cf = new Crossfader( new Array('image1a','image1b','image1c','image1d','image1e'), 1000, 6000 );
	// stagger the start times of the crossfaders for the other image frames
	window.setTimeout("f2();", 2000);
	window.setTimeout("f3();", 4000);
}

window.addEventListener ? window.addEventListener("load", pageLoad, false) : window.attachEvent("onload", pageLoad);
