
/**
Fruitmail popup.
*/
(function()
{

    function hideContent()
    {
        var id = $(this).attr('data-target')
        var content = $('#' + id)
        content = content[0];
        content.style.display = "none";
        return false;
    }

    function showContent()
    {
        var id = $(this).attr('data-target')
        var content = $('#' + id)
        content = content[0];
        content.style.display = "inherit";
        return false;
    }

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

    }

    jQuery(init);

})();

