$(document).ready(function () {
	$("#slideshow .slide:first").show();
		setTimeout("fadeContent();", 3000); //wait 3 seconds before inital rotation
	});

function fadeContent() {
	$("#slideshow .slide:first").fadeIn(500).delay(6000).fadeOut(500, function () {
		$(this).appendTo($(this).parent()); //Move the actual HTML of this div to the bottom
		fadeContent();						//DO IT AGAIN
		});
	}
