$(function(){
	$("#trigger").toggle(function(){
		$("#extra-content").slideDown();
		$(this).find("a").text("close")
	}, function(){
		$("#extra-content").slideUp();
		$(this).find("a").text("more content")
	})
	return false;
});
