$(document).ready(function(){
// run these functions on page load:
	$(".moreLink").addClass("cursor_pointer"); // show pointer cursor for date / title
	$("div.moreCopy").hide(); // hide all the content divs
	

	$(".moreLink").click(function() { 
	// toggle visibility of newsMore divs upon clicking the data / title
		$(this).parent().find("div.moreCopy").slideToggle(300);		
	});
});
