$(document).ready(function(){

	//First thing to do is hide the more bits
	$("Span.NewsMore").hide();
	$("Span.NewsClick").show();
	
	$("Span.NewsClick").toggle(function(){
		var TheID = $(this).attr("id");
		$(this).html("...CLICK FOR LESS");
		$("span#" + TheID + "More").fadeIn('slow');
	}, function(){
		var TheID = $(this).attr("id");
		$(this).html("...CLICK FOR MORE");
		$("span#" + TheID + "More").fadeOut('slow');
	});

}); 




