
/**
Fruitmail popup.
*/
(function()
{
    function showContent()
    {
        var id = $(this).attr('data-target')
        content = $('#' + id)

        content = content[0];
        content.style.display = "inherit";
        return false;
    }

    function init()
    {
        // Install event handlers
        $(".popup-link").click(showContent);
    }

    jQuery(init);

})();

