$(document).ready(function() {
$("#banner > div:gt(0)").hide();

setInterval(function() {
  $('#banner > div:first')
    .fadeOut(1000)
    .next()
    .fadeIn(1000)
    .end()
    .appendTo('#banner');
},  6000);

});

