jQuery(document).ready(function($){
    jQuery.checkWidthPostImages = function(options) {
        var maxWidth = 410;
        $(options).each(function() {
            widthImg = $(this).width();
            if(widthImg > maxWidth) {
                $(this).width(maxWidth);
            }
        });
    };
});

