﻿jQuery(document).ready(function() {
    if (TipAFriendOverlayID != null) {
        jQuery(".TipAFriendButton").attr("rel", "#" + TipAFriendOverlayID);
        jQuery(".TipAFriendButton[rel]").overlay({
            expose: '#333'
        });
        RegisterTipAFriendLinks();
    }
});



function RegisterTipAFriendLinks() {
    jQuery('.TipAFriendButton').click(function(e) {
        e.preventDefault();
        jQuery('.closeLink').attr("style", "display:block;");
        jQuery('.closeLink').click(function() { jQuery('.close').click(); });
        jQuery('#' + TipAFriendOverlayID).show();
        return false;
    });
}
