// Slideshow

$(function(){
    $('#topCatch p img:gt(0)').hide();
    setInterval(function(){
      $('#topCatch p :first-child').fadeOut()
         .next('img').fadeIn()
         .end().appendTo('#topCatch p');},
      4000);
});
