        var menuDownEvent = 'focus';


            /*
            jivetoggleLogin function
            This is for showing and hiding the choose user login form.
            */

            function jivetoggleLogin() {

                Element.toggle('jiveLoginWelcome');
                Element.toggle('jiveLoginForm');

                if ($('jiveLoginForm').style.display != 'none') {
                    $('login-username').focus();
                } else {
                    $('login-username').blur();
                }
            }


