//
// http://jonraasch.com/blog/a-simple-jquery-slideshow
// ========================================================
function ss_switch() {
  var $active = $('div#mm_ss img.ss.active');
  var $next =  $active.next('img.ss').length ? $active.next('img.ss') : $('div#mm_ss img.ss:first');
  $active.addClass('last-active');
  $next.css('opacity', '0').css('visibility', 'visible').addClass('active').animate({opacity: 1.0}, 600, function() { $active.removeClass('active last-active'); });
}

//
function init_ss(){ 
  setInterval( "ss_switch()", 3500 );
}

jQuery(document).ready(init_ss);


