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