$(document).ready(function() {
	if ($("#notifications .notification").length>1) {
		thengo();
	}
	
	//dDay = new Date(Date.UTC(2010, 10, 18, 6+5));
	//$('#countdown').countdown({until: dDay, alwaysExpire:true, expiryText: '<p style="margin:0;text-align:center;">Thank you for your support.</p><a href="https://secure.groundspring.org/dn/index.php?aid=1534" id="groundspring" title="Donate Now" style="background-position:center 50%;width:100%;margin-bottom:5px;">Donate Now</a>'});
});

function thengo() {
	setInterval("slideSwitch()", 10000);
}

var loop = 1;
function slideSwitch() {
	if ($("#notifications .notification").length>1) {
		$("#notifications .notification").each(function(i) {
			if (loop==i) {
				$(this).css({"z-index": "2"}).fadeIn("slow");
			} else {
				$(this).css({"z-index": "1"}).fadeOut("slow");
			}
		});
		
		loop = loop + 1;
		
		if (loop == $("#notifications .notification").length)
			loop = 0;
	}
}
