
	// Slideshow Banner	
	function SlideSwitch() 
	{
    	var $active = $('ul#slideshow li.active');
 
    	if ($active.length == 0) $active = $('ul#slideshow > li:last');

    	var $next = $active.next().length ? $active.next() : $('ul#slideshow > li:first');
  
	    $active.addClass('last-active');	 
	    
	    $next.css({opacity: 0.0})
	        .addClass('active')
	        .animate({opacity: 1.0}, 1000, function() {
	            $active.removeClass('active last-active');
	     });
	};	

$(function(){
	// Swith Slide every 5 Seconds / 5000ms
  	setInterval('SlideSwitch()', 5000 );
});
