$(function(){  
	$('.fadein img:gt(0)').hide();  
	setInterval(function(){  
		$('.fadein :first-child').fadeOut("slow")  
			.next('img').fadeIn("slow")  
		.end().appendTo('.fadein');},  
	5000);
	$('.fadein2 img:gt(0)').hide();  
	setInterval(function(){  
		$('.fadein2 :first-child').fadeOut("slow")  
			.next('img').fadeIn("slow")  
		.end().appendTo('.fadein2');},  
	10000);
});
