$(document).ready(function() {
    $('.show_pane, .pane .close, .overlay').click(function() {
        if ($(this).parent().next().hasClass('more_text')) {
            $('.pane_content').html('<h3>'+$(this).parent().next().attr('title')+'</h3>'+$(this).parent().next().html());
        }
        $('.overlay, .pane_container').toggle();
    });
})
