/**
* Load UP status area and bind controls
* UP login js must have been included already!
*/
$(function()
{
    function bindUpControls()
    {
        $(this).fadeIn();
        $('#login').bind('click', showLoginForm);
        $('#logout').bind('click', doUserLogout);
        $('#profile').bind('click', function()
        {
            if ('undefined' != typeof $(this).attr('class')
                && $(this).attr('class').match(/do_login/))
            {
                showLoginForm(this.href);
                return false;
            } else {
                return true;
            }
        });
    }
    $('#login_container').hide().load('_sap_up_status.php', bindUpControls);
});

