// JavaScript Document news_archive.js

$(document).ready(function(){
   $(".hiddenNews").hide();		// Hide the additional part of the news story
   
   $(".moreLink a").click(function() {	// Reveal or hide the additional part of the news story
	   var obj=$(this).parent().prev();
	   
		if (obj.is(":hidden")) {
			obj.show();
			$(this).html('Close ^');
			$("span.moreNews").html(".");
		}
		else {
			obj.hide();
			$(this).html('Read more »');
			$("span.moreNews").html("&hellip;");
		}
		return false;
	});
     
});
