$(document).ready(function() {

    $('.feed_item_contents').each(function() {

        $(this).find('.feed_item_image').each(function() {

            var current_image = $(this);

            $(this).parent('a').next().children('.feed_item_image').each(function() {
                current_image.css('display', 'inline');
                $(this).css('display', 'inline');
            });

            if (current_image.width() < 5 || current_image.height() < 5) {
                $(this).parent('a').hide();
                current_image.hide();
            }
        });
    });
});
