$(document).ready(function(){
	$('#contentleft .postarea img').load(function(){
		if($(this).width() > 520 ){
			var oldh = $(this).height();
			$(this).height( oldh * ( 520 / $(this).width() ));
			$(this).width(520);	
		}
	});
});
