$(document).ready(function(){	
	
	/*
	$('a.more-link').click(function(){
		$(this).parents('.news-item:first').find('.news-full:first').slideDown();		
		$(this).parents('.news-item:first').find('.news-teaser:first').slideUp();		
	});
	
	$('a.close-link').click(function(){
		$(this).parents('.news-item:first').find('.news-teaser:first').slideDown();		
		$(this).parents('.news-item:first').find('.news-full:first').slideUp();				
	});
	*/
	
	$('a.more-link').click(function(){
		$(this).parents('.news-item:first').find('.news-full:first').show();		
		
		$(this).parents('.news-item:first').find('.news-teaser:first').hide();		
		$(this).parents('.news-item:first').find('.news-social-counts:first').hide();		
	});
	
	$('a.close-link').click(function(){
		$(this).parents('.news-item:first').find('.news-teaser:first').show();		
		$(this).parents('.news-item:first').find('.news-full:first').hide();				
		$(this).parents('.news-item:first').find('.news-social-counts:first').show();		
	});
	
	
});
