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