$(document).ready(function() {

  $('div.articleImage img').each(function(index) {
    var width = $(this).width();
    $(this).parent().css('width', width+'px');
  });



});

