﻿jQuery(document).ready(function(){
	jQuery("#slideshow > .slide:not(:first)").css("display", "none");
	jQuery("#slideshow > .slide:first").delay(4000).fadeOut(2000, function(){
		jQuery(this).next().fadeIn(2000).delay(4000).fadeOut(2000, function(){
			jQuery(this).next().fadeIn(2000).delay(4000).fadeOut(2000, function(){
				jQuery(this).next().fadeIn(2000).delay(4000).fadeOut(2000, function(){
					jQuery(this).next().fadeIn(2000).delay(4000).fadeOut(2000, function(){
						jQuery(this).next().fadeIn(2000);
					}).delay(1000);
				}).delay(1000);
			}).delay(1000);
		}).delay(1000);
	}).delay(1000);
})
