﻿$(function() {
    window.api = $("#overlay_progress").overlay({
        api: true,
        expose: { 
            color: '#79B4B5', 
            opacity: 0.9 
        }, 
     
        closeOnClick: false,
        top: 'center'
    });
});

$(function() { 
    window.api2 = $("a[rel=#overlay]").overlay({ 
		api: true,
        expose: '#79B4B5', 
        onBeforeLoad: function() { 
            var wrap = this.getContent().find(".contentWrap");
            wrap.text("Loading..."); 
            wrap.load(this.getTrigger().attr("href")); 
        }
    }); 
});

function apriProgress(url)
{
	api.load();
	setTimeout("location.href='"+url+"';",6000);
}
