$(function() {
	parentId = $(".more").parent().attr("id");
	$(".more")
		.hide()
		.parent().hide().fadeIn(1500).end()
		.before('<a id="more-link" href="javascript:return false;' + parentId + '">Read More</a>');
	$("#more-link").click(function() {
		$(this).parent().find(".more").toggle("slow");
		if($(this).text() == 'Read More') {
			$(this).text('Read Less');
		} else {
			$(this).text('Read More');
		}
	});
});