$(document).ready(function() {
    $('.show').hide();
    $('.show').before($('<div class="show-more"><a>[ + ]</a> &nbsp;Summary</div>'));
    $(".show-more").toggle(function() {
        $(this).next('.show').slideDown(500);
        $(this).html('<a>[ &mdash; ]</a> &nbsp;Summary');
    },function(){
        $(this).next('.show').slideUp(500);
        $(this).html('<a>[ + ]</a> &nbsp;Summary');
    });
});

