$(document).ready(function() {
    
    if ($('#login').val() == 0) {
        $('#login').css('background', "url('/css/login-bg.gif') 2px center no-repeat");
    }
    if ($('#password').val() == 0) {
        $('#password').css('background', "url('/css/password-bg.gif') 2px center no-repeat");
    }
    
    $('#login').focus(function() {
       $(this).css('background', 'transparent'); 
    });
    
    $('#password').focus(function() {
       $(this).css('background', 'transparent'); 
    });
    
    jQuery("a[rel*=external]").each(function (i) {
        jQuery(this).attr('target', '_blank'); 
    });
    
});
