/*global jQuery */
(function($) {
    $.fn.moreItems = function(params) {
        params = $.extend({ }, params);

        return this.each(function () {
            var item = $(this).parents().filter("div.item");
            $(this).click(function () {
                $(this).parent().remove();
                $(".activity_noshow", item).removeClass("activity_noshow");
                return false;
            });
        });
   };
})(jQuery);
