$(document).ready(function(){

	$('.right-col img').one("load", function() {		
		if ($(this).width() > 620) {
			$(this).height($(this).height()*620/$(this).width());
			$(this).width(620);
		}
	}).each(function() {
		if (this.complete) $(this).trigger('load');
	});	
	
});

