function swapImages(){
  var $active = $('#slideshow2 .active');
  var $next = ($('#slideshow2 .active').next().length > 0) ? $('#slideshow2 .active').next() : $('#slideshow2 img:first');
  $active.fadeOut(function(){
    $active.removeClass('active');
    $next.fadeIn().addClass('active');
  });
}