/** Fish CMS, autor: Ji5í Praus **/
/* Skript pro praci s popup loginem */

$(document).ready(function()
{
    init_popup_login('#bsUser_popupLogin_enter', '#bsUser_popupLogin_box', '#bsUser_popupLogin_quit');
});

function init_popup_login(enter, box, quit)
{
    $(box).hide();
    $(enter).click(function()
    {
        offset = $(this).offset();
        $(box).css({
            'left': (offset.left + $(this).width() - $(box).width()) + 'px',
            'top': '142px',
            'z-index': 100
        })
        .show();
        $(this).hide();
        
        return false;
    });
    $(quit).click(function()
    {
        $(enter).show();
        $(box).hide();
    });
}

