$(function() {
	$("span.readmore").hide();
	$('<a class="reveal">Read More &gt;&gt;</a> ').insertBefore('.readmore');

	$("a.reveal").click(function(){
		var $this = $(this);
		$this.parents("p").children("a.reveal").fadeOut("slow", function() {
			$this.parents("p").children("span.readmore").fadeIn("fast");
		});
	});
});
