var slideshow_length = 6;
var slide_num;

var descriptions = new Array(
						'',
						'<p>&#8220;The most visible joy can only reveal itself to us when we\'ve transformed it, within.&#8221;  ~ Rainer Maria Rilke</p>',
						'<p>&#8220;Without recognizing the ordinances of Heaven, it is impossible to be a superior man.&#8221; ~ Confucius</p>',
						'<p>&#8220;For the things we have to learn before we can do them, we learn by doing them.&#8221; ~ Aristotle</p>',
						'<p>&#8220;Education is not preparation for life; education is life itself.&#8221; ~ John Dewey</p>',
						'<p>&#8220;In all things of nature there is something of the marvelous.&#8221; ~ Aristotle</p>',
						'<p>&#8220;A thing of beauty is a joy forever.&#8221;  ~ John Keats</p>'
						);

function slideShow(slide_num) {
	if (slide_num > slideshow_length) {
		new Effect.BlindUp($('info'));
		new Effect.Move($('b1'), {x: 4900, y: 0, duration: 1, afterFinish: function() {$('info').innerHTML = descriptions[slide_num-1]; new Effect.BlindDown($('info'));}});
	} else if (slide_num == 1) {
		$('info').innerHTML = descriptions[slide_num];
		new Effect.BlindDown($('info'));
	} else {
		new Effect.BlindUp($('info'));
		new Effect.Move($('b1'), {x: -980, y: 0, duration: 1, afterFinish: function() {$('info').innerHTML = descriptions[slide_num-1]; new Effect.BlindDown($('info'));}});
	}
	if (slide_num > slideshow_length) { // igiveup
		slide_num = 2;
	} else {
		slide_num = slide_num + 1;
	}
	var timer = setTimeout('slideShow(' + slide_num + ')', 10000);
}