(function(){$.extend($.fn,{mask:function(c,i){this.unmask();var h={opacity:0.8,z:10000,bgcolor:"#ccc"};var d=$(document.body);var g={top:0,left:0};if(this[0]&&this[0]!==window.document){d=this;g=d.position()}var b=$('
 
');b.appendTo(d);var k=d.outerWidth();if(!k){k=d.width()}var a=d.outerHeight();if(!a){a=d.height()}b.css({position:"absolute",top:g.top,left:g.left,"z-index":h.z,width:k,height:a,"background-color":h.bgcolor,opacity:0});if(i){b.addClass(i)}if(c){var j=$('
'+c+"
");j.appendTo(b);var f=(b.width()-j.width());var e=(b.height()-j.height());j.css({cursor:"wait",top:(e/2-2),left:(f/2-2)})}b.fadeIn("fast",function(){$(this).fadeTo("slow",h.opacity)});return b},unmask:function(){var a=$(document.body);if(this[0]&&this[0]!==window.document){a=$(this[0])}a.find("> div.mask").fadeOut("slow",0,function(){$(this).remove()})}})})();