$(document).ready(function(){
  slideShow();
});

function slideShow() {
  
  var $active = $('#slideShow img.active');
  var $next = $active.next().length ? $active.next() : $active.parent().children(':first');
  
  $active.fadeOut(800, function() { $next.fadeIn(800).addClass('active'); }).removeClass('active');
  
  setTimeout(slideShow, 5000);
}
///Fade in fade out slideshow credit:
///Aaron Tennyson
///aarontennyson.com
///http://www.youtube.com/watch?v=H4gKIA0N-jA

