jQuery().ready(function(){
	
	$(".expand-text").hide();
	
});


function slideBanner() {

		var $active = $('#right_banner img.active');
		
		if ( $active.length == 0 ) $active = $('#right_banner img:last');
		
		if ($active.next().length)
		{
			$next = $active.next();
		}
		else
		{
			$next = $('#right_banner img:first')
		}
		
		$active.fadeOut(2000, function(){
			$active.removeClass('active');
		});
		
		$next.fadeIn(2000, function(){
			$next.addClass('active');
		});
	
}

$(function() {
    setInterval( "slideBanner()", 5000 );
});
