$(document).ready( function() {
	var more = "+ more";
	var less = "- less";
	
	$("ul.latest-news li p").css({
		"overflow": "hidden",
		"height": "18px"
	});
	
	$("ul.latest-news li a").click( function() {
		if ($(this).hasClass("read-more")) {
			if ($(this).text() == less) {
				$(this).prev("p").css({
					"overflow": "hidden",
					"height": "18px"
				});
				$(this).text(more);
			} else if ($(this).text() == more) {
				$(this).prev("p").css({
					"overflow": "auto",
					"height": "auto"
				});
				$(this).text(less);
			}
		}
		
		return false;
	});
});
