jQuery(document).ready(function($){
	$("a.more").bind('click', function(){
		var section = $("#section_"+$(this).attr("href").slice(1));
		if(section.is(":hidden")) {
			$(this).html("Close");
			section.slideDown();
		} else {
			$(this).html("Read more");
			section.slideUp();
		}
		return false;
	});
});

