jQuery(function() {
    $('#LoginPanel .AspNet-Login-UserPanel label').text('Username (NPN):');
    if ($('body').hasClass('preregistration_aspx')) {
        $('#LoginPanel .lv_loggedin')
            .replaceWith('');
    }
    if ($('body').hasClass('register_aspx')) {
        $('#LoginPanel .lv_loggedin')
            .replaceWith('');
    }
});