function showProgress() {         
    jQuery("#loadingprogress").progressbar({
        value: 100
    });

 }

jQuery(function() {
		var progress = document.getElementById('footerloader');
        var jloader = jQuery(progress);
        
        var blur = document.getElementById('blur');					
		blur.style.height = document.documentElement.clientHeight;
		var jblur = jQuery(blur);
		
        jloader.ajaxStart(function() {
            jQuery(this).show();
            showProgress();								        
		}).ajaxStop(function() {
			jQuery(this).hide();
		});
		
		jblur.ajaxStart(function() {
			jQuery(this).show();
		}).ajaxStop(function() {
			jQuery(this).hide();
		}); 					
	});
         


