(function($){$.fn.jmc_resizr=function(settings){var win=$(window);var defaults={cropType:'full',binding:{vertical:'center',horizontal:'center'},followBrowserSize:true,parentElement:$('body')};var opts={settings:$.extend({},defaults,settings)};var resizeNode=function(el){el=$(el);ratio=el.height()/el.width();var win_h=win.height(),win_w=win.width();if($(defaults.parentElement)[0]!==$('body')[0]){win_h=defaults.parentElement.height(),win_w=defaults.parentElement.width()}var settings=$.extend({},opts.settings);switch(settings.cropType){case'fit':h=win_h;w=win_w;break;case'height':h=win_h;w=win_h/ratio;break;case'width':h=win_w*ratio;w=win_w;break;case'fill_outer':if(win_h/win_w<=ratio){h=win_w*ratio;w=win_w}else{h=win_h;w=win_h/ratio}break;case'full':default:if(win_h/win_w>=ratio){h=win_w*ratio;w=win_w}else{h=win_h;w=win_h/ratio}}h=Math.ceil(h);w=Math.ceil(w);switch(settings.binding.vertical){case'top':t=0;break;case'bottom':t=(win_h-h);break;case'center':default:t=(win_h-h)/2;break}switch(settings.binding.horizontal){case'left':l=0;break;case'right':l=(win_w-w);break;case'center':default:l=(win_w-w)/2;break}el.css({'height':h,'width':w,'position':'absolute','top':t,'left':l})};var followBrowserResize=function(el){if($(el)==null){return}resizeNode(el)};return this.each(function(){if(this.nodeName==='IMG'){$(this).load(function(){resizeNode(this);var settings=$.extend({},opts.settings);if(settings.followBrowserSize){$(window).bind('resize',{el:this},function(event){followBrowserResize(event.data.el)})}}).error(function(){alert("Could not load!"+$(this).attr('src'))}).attr('src',$(this).attr('src'))}else{resizeNode(this);var settings=$.extend({},opts.settings);if(settings.followBrowserSize){$(window).bind('resize',{el:this},function(event){followBrowserResize(event.data.el)})}}})}})(jQuery);
