// Setup the listener to trigger the overlay
$(function() {
    $("a[rel]").overlay({

        // Apple effect
        effect: 'apple',

        // custom expose settings
        expose: {
            color: '#000000',
            opacity: 0.7,
            closeSpeed: 500
        }
    });
});