$().ready(function() {
    $('#login fieldset input').each(function() {
        if ($(this).val()) {
            $('label[for='+$(this).attr('id')+']').hide();
        }
    });
    $('#login fieldset input').focus(function() {
        $('label[for='+$(this).attr('id')+']').hide();
    });
    $('#login fieldset label').click(function() {
        $(this).hide();
    });
    $('#login fieldset input').blur(function() {
        if (!$(this).val()) {
            $('label[for='+$(this).attr('id')+']').show();
        }
    });
});

