(function($){$.fn.fullscreenr=function(a){if(a.height===undefined)alert('Please supply the background image height, default values will now be used. These may be very inaccurate.');if(a.width===undefined)alert('Please supply the background image width, default values will now be used. These may be very inaccurate.');if(a.bgID===undefined)alert('Please supply the background image ID, default #bgimg will now be used.');var b={width:1280,height:1024,bgID:'bgimg'};var a=$.extend({},b,a);$(document).ready(function(){$(a.bgID).fullscreenrResizer(a)});$(window).bind("resize",function(){$(a.bgID).fullscreenrResizer(a)});return this};$.fn.fullscreenrResizer=function(a){var b=a.height/a.width;var c=$(window).width();var d=$(window).height();if((d/c)>b){$(this).height(d);$(this).width(d/b)}else{$(this).width(c);$(this).height(c*b)}$(this).css('left',(c-$(this).width())/2);$(this).css('top',(d-$(this).height())/2);return this}})(jQuery);
