/*Jon Raasch*/

function slideSwitch() {
  var a = $("#slideshow A.active");
  0 == a.length && (a = $("#slideshow A:last"));
  var b = a.next().length ? a.next() : $("#slideshow A:first");
  a.addClass("last-active");
  b.css({opacity:0}).addClass("active").animate({opacity:1}, 1E3, function() {
    a.removeClass("active last-active")
  })
}
$(function() {
  setInterval("slideSwitch()", 5E3)
});
