﻿$(function() {

    $("a[rel]").overlay({

        onBeforeLoad: function() {
            this.expose();
        },

        onLoad: function(content) {
        },

        onClose: function(content) {

            $.unexpose();
        }
    });
});	