$(document).ready(function() { 

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

});
