// Slide show for blind pages
$(document).ready(function() {

	$("#blind-banner img:first").addClass("active");
	$("#blind-banner img:first").next().addClass("next");

	setInterval(fadeNextImage, 4000);
	
	function fadeNextImage() {
		$("#blind-banner img.active").fadeOut(1000, setNextImage);
	}

	function setNextImage() {
		$("#blind-banner img.active").removeClass("active");
		$("#blind-banner img.next").removeClass("next").addClass("active");
		
		var next = $("#blind-banner img.active").next();
		
		if (next.length == 0)
			next = $("#blind-banner img:first");
		
		next.show();
		next.addClass("next");
	}

});