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