var _parentClassName=".Progress";
var _progressImg=new Image();
_progressImg.src="http://192.168.0.132:90/PackersAndMovers/Include/AjaxProgress/images/Progress.gif";
function ShowProgress()
{
    $("#_ajaxProgressDivLayer").css({
                                        backgroundColor:"#dce8f9",
	                                    position:"absolute",
	                                    left:$(_parentClassName).offset().left+"px",
	                                    top:($(_parentClassName).offset().top+2)+"px",
	                                    width:$(_parentClassName).width()+"px",
	                                    height:($(_parentClassName).height()-2)+"px",
	                                    display:"block",
	                                    zIndex:"100000020"	
                                   }).fadeTo("slow", 0.18);
    
    $("#_ajaxProgressDiv").css({
//                                    backgroundColor:"#ffffff",
	                                position:"absolute",
	                                zIndex:"100000021",
	                                display:"block",
	                                left:$(_parentClassName).offset().left+"px",
                                    top:$(_parentClassName).offset().top+"px",
                                    width:$(_parentClassName).width()+"px",
                                    height:$(_parentClassName).height()+"px",
                                    textAlign:"center"
                               });
    $("#_ajaxProgressDiv").append("<IMG src='"+_progressImg.src+"' style='margin-top:10px'/>");
}

function resetAjaxProgress()
{
    $(function(){$('.Progress a[href]').click(function(){ShowProgress();});});
}