function slideSwitch2(switchSpeed2){var $active2=$('.slideshow2 DIV.active2');if($active2.length==0)$active2=$('.slideshow2 DIV:last');var $next=$active2.next('DIV').length?$active2.next('DIV'):$('.slideshow2 DIV:first');$active2.addClass('last-active2');$next.css({opacity:0.0}).addClass('active2').animate({opacity:1.0},switchSpeed2,function(){$active2.removeClass('active2 last-active2');});}$(function(){setInterval("slideSwitch2(1500)",3000);});function slideSwitch(switchSpeed){var $active=$('.slideshow DIV.active');if($active.length==0)$active=$('.slideshow DIV:last');var $next=$active.next('DIV').length?$active.next('DIV'):$('.slideshow DIV:first');$active.addClass('last-active');$next.css({opacity:0.0}).addClass('active').animate({opacity:1.0},switchSpeed,function(){$active.removeClass('active last-active');});}$(function(){setInterval("slideSwitch(1500)",3000);});
