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