$(document).ready(function() {
    $(this).delay(200, function() { // delay needed for Firefox 3.0.x - content not syncing properly on refresh only

        // Add link for Media Coverage
        $('.info').before('<p><a href="#" class="featureLink">Read more >></a></p>')

        $('.featureLink').click(function() {
        var content = $(this).parent().parent().wrapInner('<div class="milestone">').html();
            $().colorbox({
                html: content,
                opacity: 0.5,
                innerWidth: '600px'
            });
            return false;
        });


    }); // end delay
});                 // end document ready



