$(document).ready(function(){
	$("#more-content").click(function () {
		$("#more").slideToggle("fast");
		if($("#more-content").html() == "Read more") {
			$("#more-content").html("Read less");
		}
		else {
			$("#more-content").html("Read more");
		}
	});
});
