jQuery(document).ready(function(){

    // move read more links into last paragraphs
    jQuery('.introText .readMoreLink' ).each(function()
    {
        jQuery(this).prev('p').append(jQuery(this));

        jQuery(this).show();
    });

});


