$(function() {
	if($('#center_column p').length > 2) {
		$('#center_column p:gt(1)').hide();
		$('#center_column p:nth(1)').append(' <a href="#">Read More.</a>').find('a:last').click(function() {
			$(this).hide();
			$('#center_column p').slideDown();
			return false;
		}).css('color', '#1E5E70');
		
		/** $('#center_column p:last').append(' <a href="#">Read Less</a>').find('a:last').click(function() {
			$('#center_column p:gt(1)').slideUp();
			$('#center_column p:nth(1) a:last').show();
			return false;
		}).css('color', '#1E5E70'); /**/
	}
});

$(function() {
	if($('#right_column p').length > 2) {
		$('#right_column p:gt(1)').hide();
		$('#right_column p:nth(1)').append(' <a href="#">Read More.</a>').find('a:last').click(function() {
			$(this).hide();
			$('#right_column p').slideDown();
			return false;
		}).css('color', '#1E5E70');
		
		/** $('#right_column p:last').append(' <a href="#">Read Less</a>').find('a:last').click(function() {
			$('#right_column p:gt(1)').slideUp();
			$('#right_column p:nth(1) a:last').show();
			return false;
		}).css('color', '#1E5E70'); /**/
	}
});