var img = $('.novelty-full img, .simple_h1_editor img, .default-editor img');
var imgWidth = img.width();
img.css('display', 'inline-block');
img.css('max-width', imgWidth);
img.css('width', '100%');
img.css('height', 'auto');
$('.novelty-full img, .simple_h1_editor img, .default-editor img').each(function(){
var img = $(this);
var imgWidth = img.width();
img.css('display', 'inline-block');
img.css('max-width', imgWidth);
img.css('width', '100%');
img.css('height', 'auto');
});