
$(document).ready(function () {

    $('.left a:not(.selected)').hover(function () {
        $(this).stop(true, true).fadeTo('fast', 1);
    }, function () {
        $(this).stop(true, true).fadeTo('slow', 0.8);
    });


    $('#login').load('/publicuser/login/?xslt=blank.xsl&amp;view=showloginbox form', function () {
        $('.left input[type=submit]').hover(function () {
            $(this).stop(true, true).fadeTo('fast', 1);
        }, function () {
            $(this).stop(true, true).fadeTo('slow', 0.7);
        });

        $('.brInputDefaultValue').each(function () {
            var default_value = this.value;
            $(this).focus(function () {
                if (this.value == default_value) {
                    this.value = '';
                }
            });
            $(this).blur(function () {
                if (this.value == '') {
                    this.value = default_value;
                }
            });
        });
    
    });

});
