<script>
$(document).ready(function(){
$('a[href = "#showmore"]').addClass('showmore');
$('.showmore').nextAll('span').addClass('ztext hideme').hide();
$('.showmore').prevAll('span').addClass('ztext showme');
$('.showmore').click(function(event) {event.preventDefault();
$(this).prev('br').hide();
var text = $(this).text();$(this).text(text == "Read more" ? "< Back" : "Read more");
$(this).siblings('span').toggle(500);
});});
</script>