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

