﻿(function($) {
    $.fn.moreResults = function(originalText, swapInText) {

        $('.extra').each(function() { $(this).hide(); });
        $('.swappableText').each(function() { $(this).html(originalText); });

        $('.more').toggle(
            function() {
                $(this).find('.swappableText').html(swapInText);
                $(this).parent("div").siblings('.extra').toggle();
                $('.rc_top').each(function() { $(this).css('height', $(this).parent().outerHeight()); });
                return false;
            },
            function() {
                $('.swappableText').html(originalText);
                $(this).parent("div").siblings('.extra').toggle();
                $('.rc_top').each(function() { $(this).css('height', $(this).parent().outerHeight()); });
                return false;
            }
        );

    }
})(jQuery);
