var strings = {
	"readmore": {
		"us": "Read More",
		"br": "Leia mais"
	}
};

$(document).ready(function(){

	$(".expandable").each(function() {
		
		$(this).css("overflow", "hidden").find("p:first-child").append(" <span class=\"expand\" onclick=\"expand(this);\">" + strings.readmore[language] + " &raquo;</span>");
		$(this).data("originalHeight", $(this).height());
		$(this).height($(this).find("p:first-child").height());
	});
	
});

function expand(e) {

	$(e).fadeOut("fast", function() {
		parentDiv = $(e).parents(".expandable").eq(0);
		$(parentDiv).animate({"height": $(parentDiv).data("originalHeight") + "px" });
	});
	
}
