
 $(document).ready(function(){					
	$('div.restOfArticle:eq(0)').hide();
	$('li.pastArticle p').hide();
	$('span.more').click(function() {
		$('div.restOfArticle:eq(0)').show('slow');
		$(this).hide();
		$('li.pastArticle p').hide('slow');
		$('span.less').show();
	});
	$('span.less').click(function() {
		$('div.restOfArticle:eq(0)').hide ('slow');
		$('span.more').show();
	});	
	$('li.pastArticle').each(function(i){
		$(this).click(function() {
			if ( $(this).find('p').is(':hidden') ) { 			
				$('li.pastArticle p').hide('slow');
				$('div.restOfArticle:eq(0)').hide('slow');
				$('span.more').show();
			
				$(this).find('p').show('slow');			
			} else { 			
				$(this).find('p').hide('slow');			
			}
		});
	});
});
