function resizeImage(){if(this.tagName.toLowerCase()!="img"){return $(this)}var maxWidth=845;var maxHeight=845;var width=this.naturalWidth;var height=this.naturalHeight;var reduce=1;if(!width||!height){var img=document.createElement('img');img.src=this.src;width=img.width;height=img.height}pWidth=width/maxWidth;pHeight=height/maxHeight;if(pWidth<pHeight){reduce=pHeight}else{reduce=pWidth}if(reduce<1){reduce=1}var newWidth=width/reduce;var newHeight=height/reduce;return $(this).attr("width",newWidth).attr("height",newHeight)}$(document).ready(function(){$('img.resized').each(function(){if(this.complete!==false){resizeImage.apply(this)}$(this).load(function(){resizeImage.apply(this)})})});

