$(document).ready(function() {
	$('.post img').each(function() {
		if ( $(this).width() > 550)
			$(this).width(550);
	});
});
