function slideShow() 
{
  var showing = $('#slider #sliderContent .is-showing');
  var next = showing.next().length ? showing.next() : showing.parent().children(':first');
  showing.fadeOut(1000, function() { 
   next.fadeIn(1000).addClass('is-showing'); }).removeClass('is-showing');
  setTimeout(slideShow, 5000);
}
