$(function(){
	$('.fadein img:gt(0)').hide();
	setInterval(function(){
		$('.fadein').each(function(){
			if ($(this).find('img').size() > 1)
			{
				$(this).find(':first-child').fadeOut().next('img').fadeIn().end().appendTo(this);
			}
		});
	}, 3000);
});

