$(function() {
	// show full news
	$(".snews").click(function() {
		$(this).hide() ;
		$(this).next().show() ;
		$(this).next().next().fadeIn() ;
		
	});
	
	// hide full news
	$(".news-hide").click(function() {
		$(this).hide() ;
		$(this).prev().fadeIn();
		$(this).next().fadeOut() ;
	});
	
	
});
