(function($) {
	$.extend({ 
		mask: function(content){
			//console.log($('#maskId').length);
			if($('#maskId').length==0){
				if(content == undefined) content = '';
				$('<div></div>').attr('id', 'maskId').css({
					'position': 'fixed',
					'top': 0,
					'left': 0,
					'z-index': 900,
					'opacity': 0.5,
					'width': '100%',
					'height': '100%',
					'color': 'white',
					'background-image': 'url(/global/img/black.png)',
					'background-position': '0 0',
					'background-repeat': 'repeat'
				}).html(content).appendTo('body');
			}
			
		},
		unmask: function(){
			$('#maskId').remove();
		}
	});
})(jQuery);
