var slideshowPlay;

$(document).ready(function () {
	$("div#spotlight ul li img").wrap('<a href="/events/awards/">');
	slideshowPlay = setInterval(playSlideshow, 5000);
});

function playSlideshow() {
	numSlides = $("div#spotlight ul li").length;
	$("div#spotlight ul li:eq(" + (numSlides - 2) + ")").show();
	$("div#spotlight ul li:last").fadeOut("slow", function () {
		cloned = $("div#spotlight ul li:last");
		$("div#spotlight ul li:last").remove();
		$("div#spotlight ul").prepend(cloned);	
	});
}
