$(document).ready(function(){
		
	var myparam = 0;

	$('.content-body').find('object').each(function() {
		$(this).width(280);
	});
	
	$('.content-body img').one("load", function() {		
		
		if ($('table.ft').length > 0) {
			myparam = 280;
		} else {
			myparam = 400;
		}

		if ($(this).width() > myparam) {
			$(this).height($(this).height()*myparam/$(this).width());
			$(this).width(myparam);
		}
	}).each(function() {
		if (this.complete) $(this).trigger('load');
	});	

});

