$(document).ready(function(){
	
	$('.me-article .ct-content img.captionme').each(function(i){
		var width = $(this).width();
		var height = $(this).height();
		
		while($(this).width() > $(this).parent().parent().width()){
			width = width - 1;
			height = height - 1;
			$(this).width(width);
			$(this).height(height);
		}
		
	});
	
});

