function paginate(selector, links, show, step) {
    var count = 0;
    
    $(selector).each(
        function() {
            if (count < show) {
                $(this).fadeIn('fast')
            } else {
                $(this).hide();
            }
            count++;
        }
    );
    
    $(links).html('');
    
    if (count > show) {
        $(links).html('<a href="#" onclick="return paginate(\'' + selector + '\', \'' + links + '\', ' + (show + step) + ', ' + step + ');">More</a>');
    }
    
    if (show > step) {
        $(links).append('&nbsp;<a href="#" onclick="return paginate(\'' + selector + '\', \'' + links + '\', ' + (step) + ', ' + step + ');">Hide</a>');
    }
    return false;
}

$(document).ready(
    function() {
        paginate('.gallery-image', '#gallery-more-link', 10, 10);
        paginate('.donation-table tr', '#donations-more-link', 5, 5);
        paginate('.members-table tr', '#members-more-link', 5, 5);
        paginate('.pageComment', '#comments-more-link', 5, 5);
    }
);