$(document).ready(function(){
	$('.more_news_link').live('click', function(){	
		$('.show_intro_news').show('slow');
		$('.more_news_link').hide();		
	});
	
	$('.more_spy_news_link').live('click', function(){	
		$('.show_spy_intro_news').show('slow');
		$('.more_spy_news_link').hide();		
	});
	
	$('.more_enc_news_link').live('click', function(){	
		$('.show_enc_intro_news').show('slow');
		$('.more_enc_news_link').hide();		
	});
});

