$(window).bind('load', function () {
    $('.blog .img img').each(function () {
        align = $(this).width();
        $(this).parent().css({
            'width': align,
        })
    });
});
