// JavaScript Document Simplest jQuery Slideshow

$(function(){
    $('.img-header img:gt(0)').hide();
    setInterval(function(){
      $('.img-header :first-child').fadeOut(1500)
         .next('img').fadeIn(1500)
         .end().appendTo('.img-header');}, 
      4000);
});
