// JavaScript Document


var i = 0; var wait = 6000;
function SlideShow(slides){
	//Effect.Fade(slides[i], { duration:2, from:1.0, to:0.0 });
	Effect.Shrink(slides[i], { duration:2, direction:'top-left' });
	i++;
	if (i == slides.length) i = 0;
	//Effect.Appear(slides[i], { duration:2, from:0.0, to:1.0 });
	Effect.Grow(slides[i], { duration:2, direction:'top-right' });
}  
// the onload event handler that starts the fading.


