			// this array consists of the id attributes of the divs we wish to alternate between
			var divs_to_fade = new Array('box-1', 'box-4', 'box-2', 'box-5', 'box-3', 'box-6');

			var divs_to_appear = new Array('box-2', 'box-5', 'box-3', 'box-6', 'box-1', 'box-4');
		
			// the starting index in the above array.  It should be set to the value of the div which doesn't have the CSS Display property set to "none"
			var f = 0;
			var a = 0;
			
			// the number of milliseconds between swaps.  Default is five seconds.
			var wait = 5000;

			// the function that performs the fade
			function swapFade() {
				Effect.Fade(divs_to_fade[f], { duration:0, from:0.0, to:0.0 });
				f++;
				if (f == 6) f = 0;
				Effect.Appear(divs_to_appear[a], { duration:2, from:0.0, to:2.0 });
				a++;
				if (a == 6) a = 0;
			}
			
			// the onload event handler that starts the fading.
			function startPage() {
				setInterval('swapFade()',wait);
			}
