	window.onload = runShow;
 
	var i = 0;
	var numFeatures = 9;
	var pauseLength = 5;
	var opacity = 100;
	var increasing = true;
	var pictures = new Array(numFeatures);
 
	pictures[0] = new Image(270, 200);
	pictures[0].src = "image/slideshow/2girls_violin.jpg";
	pictures[0].alt = "Lyceum Academy";
 
	pictures[1] = new Image(270, 200);
	pictures[1].src = "image/slideshow/2girls_reading.jpg";
	pictures[1].alt = "Lyceum Academy";
 
	pictures[2] = new Image(270, 200);
	pictures[2].src = "image/slideshow/pageant-2.jpg";
	pictures[2].alt = "Lyceum Academy";
	
	pictures[3] = new Image(270, 200);
	pictures[3].src = "image/slideshow/group-violin1.jpg";
	pictures[3].alt = "Lyceum Academy";
	
	pictures[4] = new Image(270, 200);
	pictures[4].src = "image/slideshow/fencing-1.jpg";
	pictures[4].alt = "Lyceum Academy";
	
	pictures[5] = new Image(270, 200);
	pictures[5].src = "image/slideshow/field-trip-1.jpg";
	pictures[5].alt = "Lyceum Academy";
	
	pictures[6] = new Image(270, 200);
	pictures[6].src = "image/slideshow/chorus-1.jpg";
	pictures[6].alt = "Lyceum Academy";
	
	pictures[7] = new Image(270, 200);
	pictures[7].src = "image/slideshow/3girls.jpg";
	pictures[7].alt = "Lyceum Academy";
	
	pictures[8] = new Image(270, 200);
	pictures[8].src = "image/slideshow/pageant-1.jpg";
	pictures[8].alt = "Lyceum Academy";
	
	pictures[9] = new Image(270, 200);
	pictures[9].src = "image/slideshow/lyceum christmas violins.jpg";
	pictures[9].alt = "Lyceum Academy";
 
	function runShow()
	{
		if(increasing)
			opacity += 2;
		else
			opacity -= 2;
		if(opacity > 98) opacity = 99;
 
		document.getElementById( 'slideshow' ).style.opacity = (opacity / 100.0);
		document.getElementById( 'slideshow' ).style.filter = 'alpha(opacity='+opacity+')';
 
		if(!increasing && opacity < 20)
		{
			// flip pic
			i = ++i % numFeatures;
			j = i+1;
 
			document.getElementById( 'slideshow' ).innerHTML = '<img id="Ggeo5" src="' + pictures[i].src + '" width="270" height="200" border="0" alt="Lyceum Academy" />';
 
			increasing = true;
		}
		if(increasing && opacity > 98)
		{
			// fading done
			increasing = false;
 
			setTimeout("runShow()", pauseLength * 1000);
		}
		else
			setTimeout("runShow()", 1);
	}

