$(document).ready(function () {
	$('.block-section .readmore').each( function() {
		$('p:last', $(this).parent()).append('&#160;&#160;').append($(this));
		}
	);
	
	$('.casestudylistitem .readmore').each( function() {
		$('p:last', $(this).parent()).append('&#160;&#160;').append($(this));
		}
	);
	
});