			function slideSwitch() {
			var $active = jQuery('#slideshow1 img.active');
		
			if ( $active.length == 0 ) $active = jQuery('#slideshow1 img:last');
		
			var $next =  $active.next().length ? $active.next()
				: jQuery('#slideshow1 img:first');
		
			$active.addClass('last-active');
		
			$next.css({opacity: 0.0})
				.addClass('active')
				.animate({opacity: 1.0}, 1000, function() {
					$active.removeClass('active last-active');
				});
		}
		function slideSwitch2() {
			var $active = jQuery('#slideshow2 img.active');
		
			if ( $active.length == 0 ) $active = jQuery('#slideshow2 img:last');
		
			var $next =  $active.next().length ? $active.next()
				: jQuery('#slideshow2 img:first');
		
			$active.addClass('last-active');
		
			$next.css({opacity: 0.0})
				.addClass('active')
				.animate({opacity: 1.0}, 1000, function() {
					$active.removeClass('active last-active');
				});
		}
		function slideSwitch3() {
			var $active = jQuery('#slideshow3 img.active');
		
			if ( $active.length == 0 ) $active = jQuery('#slideshow3 img:last');
		
			var $next =  $active.next().length ? $active.next()
				: jQuery('#slideshow3 img:first');
		
			$active.addClass('last-active');
		
			$next.css({opacity: 0.0})
				.addClass('active')
				.animate({opacity: 1.0}, 1000, function() {
					$active.removeClass('active last-active');
				});
		}
		
		jQuery(function() {
			setInterval( "slideSwitch()", 6800 );
			setInterval( "slideSwitch2()", 6900 );
			setInterval( "slideSwitch3()", 7000 );
		});

