$(function(){
	$('img').each(function() {
        var imgSrc = $(this).attr('src');
        // if (imgSrc.includes('n.sinaimge.cn')) {
        //     var newSrc = 'http://www.easyblog.cc/thumb.php?url=' + encodeURIComponent(imgSrc);
        //     $(this).attr('src', newSrc);
        // }
    });
});