
$(document).ready(function() {
	
	$('.newsItem').click(function(){
		$('.popup').hide();
		$(this).parent().siblings('.popup').show();
		return false;
	});
	
	$('.closebutton').click(function(){
		$(this).parents('.popup').hide();
		return false;
	});
	
});