$(document).ready(function() {
	var Url;
	function MaxImageSize() {
		$('#Content img').each(function(index) {
			if ($(this).width() > gdn.definition('MaxImageSizeWidth')) {
				$(this).css('width', gdn.definition('MaxImageSizeWidth') + 'px');
				$(this).css('cursor', 'pointer');
				$(this).click (function(){
					window.open($(this).attr('src'));
				});
			}
		});
	}

	MaxImageSize();
});


