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