$(function(){
	$('#animation img:gt(0)').hide();
	setInterval(function(){
		$('#animation :first-child').fadeOut(2000).next('img').show().end().appendTo('#animation');
	}, 4000);
});
