$( function() {
	$("a.toggle-more").click( function() {
		$(this).prev("div#more").slideToggle();
		
		if ($(this).text().substring(0, 4) == "more") {
			$(this).html("&laquo; less");
		} else {
			$(this).html("more &raquo;");
		}
		return false;
	});
});
