(function($){$.fn.imagefit=function(options){var fit={all:function(imgs){imgs.each(function(){fit.one(this);})},one:function(img){$(img).width('100%').each(function() {if($(this).width()>$(this).attr('startwidth')) {var alto=$(this).attr('startheight')+"px" var ancho=$(this).attr('startwidth')+"px" $(this).width(ancho).height(alto)} else {$(this).height(Math.round($(this).attr('startheight')*($(this).width()/$(this).attr('startwidth'))));}})}};this.each(function(){var container=this;var imgs=$('img',container).not($("table img"));imgs.each(function(){$(this).attr('startwidth',$(this).width()).attr('startheight',$(this).height()) fit.one(this);});$(window).bind('resize',function(){fit.all(imgs);});});return this;};})(jQuery);