$(window).load(function () {
	$('.fadein img:hidden:first-child').fadeIn(1000);
	$('.fadein img:gt(0)').hide();
	
	setInterval(function(){
	  $('.fadein img:first-child').fadeOut(1000)
		 .next('img').fadeIn(1000)
		 .end().appendTo('.fadein');},
	  4000);
});

$(window).load(function () {
	$('.anc:hidden:first-child').fadeIn(1000);
});

