$(document).ready(function() {
	
	$('.fadein img:gt(0)').hide();
	setInterval(function(){
		$('.fadein a :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');
	}, 5000);
	
});
