// JavaScript Document
$(document).ready(function() {
$(function(){
    $('.slideshow img:gt(0)').hide();
    setInterval(function(){
      $('.slideshow :first-child').fadeOut(1000)
         .next('img').fadeIn(1000)
         .end().appendTo('.slideshow');}, 
      5000);
});
 });
