(function(a){a.fn.imagefit=function(b){var c={all:function(d){d.each(function(){c.one(this)})},one:function(d){a(d).width("100%").each(function(){a(this).height(Math.round(a(this).attr("startheight")*(a(this).width()/a(this).attr("startwidth"))))})}};this.each(function(){var d=this;var e=a("img",d).not(a("table img"));e.each(function(){console.log("img");console.log(a(this).width());a(this).attr("startwidth",a(this).width()).attr("startheight",a(this).height()).css("max-width",a(this).attr("startwidth")+"px");console.log(a(this).attr("startwidth"));console.log(a(this).css("max-width"));c.one(this)});a(window).bind("resize",function(){c.all(e)})});return this}})(jQuery);
