//--------------------01–‡–Ú-----------------//
			function slideSwitch01() {
			    var $active = $('.slideshow01 img.active');
			    if ( $active.length == 0 ) $active = $('.slideshow01 img:last');
			    var $next =  $active.next().length ? $active.next() : $('.slideshow01 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() {
			    setInterval( "slideSwitch01()", 4000 );
			});
//--------------------02–‡–Ú-----------------//		
			function slideSwitch02() {
			    var $active = $('.slideshow02 img.active');
			    if ( $active.length == 0 ) $active = $('.slideshow02 img:last');
			    var $next =  $active.next().length ? $active.next() : $('.slideshow02 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() {
			    setInterval( "slideSwitch02()", 4000 );
			});
//--------------------03–‡–Ú-----------------//
			function slideSwitch03() {
			    var $active = $('.slideshow03 img.active');
			    if ( $active.length == 0 ) $active = $('.slideshow03 img:last');
			    var $next =  $active.next().length ? $active.next() : $('.slideshow03 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() {
			    setInterval( "slideSwitch03()", 4000 );
			});
			
//--------------------04–‡–Ú-----------------//
			function slideSwitch04() {
			    var $active = $('.slideshow04 img.active');
			    if ( $active.length == 0 ) $active = $('.slideshow04 img:last');
			    var $next =  $active.next().length ? $active.next() : $('.slideshow04 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() {
			    setInterval( "slideSwitch04()", 4000 );
			});
			
//--------------------05–‡–Ú-----------------//
			function slideSwitch05() {
			    var $active = $('.slideshow05 img.active');
			    if ( $active.length == 0 ) $active = $('.slideshow05 img:last');
			    var $next =  $active.next().length ? $active.next() : $('.slideshow05 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() {
			    setInterval( "slideSwitch05()", 4000 );
			});
			
			
