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