jQuery(function() {
	jQuery("div#new_info_box img").each(function() {
		jQuery(this).attr("width","100");
		jQuery(this).removeAttr("height");
	});
	jQuery("div#contentleft img").each(function() {
		var imgWidth = parseInt(jQuery(this).attr("width"), 10);
		if(imgWidth > 550) {
			jQuery(this).attr("width","550");
			jQuery(this).removeAttr("height");
		}
	});
});
