$(document).ready(function() {
    $('a.more').each(function(i) {
        $(this).click(function() {
            $('#' + $(this).attr('id') + '_ld').removeClass('hide');
            $(this).hide();
        });
    });
});

