// JavaScript Document
$(document).ready(function() {
	$("div.more").slideUp();
	var more = document.createElement("a");
	more.href="#";
	text = document.createTextNode("Read More >>");
	$(more).append(text);
	$(more).toggle(function(){
		$(this).parent().next("div.more").slideToggle();
		$(this).text("Close");
		return false;
	},function(){
		$(this).parent().next("div.more").slideToggle();
		$(this).text("Read More >>");
		return false;
	});
	more = $(document.createElement("p")).append(more);
	$("div.more").before(more);
});