// JavaScript Document

$('document').ready(function() {
	$('#Content').each(function() {
		var img_max_width = 436;
		$(this).find('img, object').each(function() {
			var w = $(this).width();
			var h = $(this).height();
			if (w > img_max_width) {
				var r = w / h;
				$(this).width(img_max_width);
				$(this).height(Math.round(img_max_width / r));
			}
		});
	});
	$('#Content a:has(img)').each(function() {
		
	});
});
