// Image widths
$(document).ready(function(){
	$(".main_content img").each(function(){
		
		var img_width = $(this).width();
		alert(img_width);
		$(this).css("width" : width);
		
	});
});