﻿(function($){$.fn.loadOverlay=function(url){var maxZ=Math.max.apply(null,$.map($('body *'),function(e,n){var position=$(e).css('position');if(position!='static'){return parseInt($(e).css('z-index'))||1;}}));this.css('z-index',maxZ+10);return this.load(url,null,null);};$.fn.showOverlay=function(callback){if(callback){this.bind("callback",callback);}
this.css("height",$(window).height());return this.fadeIn();};$.fn.hideOverlay=function(){this.fadeOut();return this.trigger("callback");};})(jQuery);