var slideshow = setInterval(
	function () {
		$('#slideshow img:eq(2)').animate({
			opacity: 0
		}, 1000, function () {
			$($(this).parent()).prependTo('#slideshow div');
			$(this).css('opacity', 1);
		});
	}, 5000);
