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

			// the onload event handler that starts the fading.
			function startPage(testnum) {
				if (testnum == 2) imax = 2;
				if (testnum == 3) imax = 3;
				if (testnum == 4) imax = 4;
				if (testnum == 5) imax = 5;
				if (testnum == 6) imax = 6;
				if (testnum == 7) imax = 7;
				setInterval('swapFade(imax)',wait);
			}
		
			// 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 i = 0;
			
			// the number of milliseconds between swaps.  Default is five seconds.
			var wait = 10000;

			// the function that performs the fade
			function swapFade(imax) {
				Effect.Fade(divs_to_fade[i], { duration:0, from:0.0, to:0.0 });
				i++;
				if (i == imax) i = 0;
				Effect.Appear(divs_to_fade[i], { duration:2, from:0.0, to:2.0 });
			}

var HelpStatus = 0; 
function hideshowOpen(which,act) 
{ 
if (which.style.display == "none") 
{ 
which.style.display = "block"; 
if(act == 'help') 
{ 
HelpStatus = 1; 
} 
} 
} 

function hideshowClose(which,act) 
{ 
if (which.style.display == "block") 
{ 
which.style.display = "none"; 
if(act == 'help') 
{ 
HelpStatus = 1; 
} 
} 
} 



