$(document).ready(function(){
    var labels = new Array();
    var loginLabel = $('#loginField').attr('value');
    var passwordLabel = $('#passwordField').attr('value');
    
    $('#loginField')
    .focus(function(){
        if($(this).attr('value') == loginLabel) {
            $(this).attr('value', '');
        }
    })
    .blur(function(){
        if($(this).attr('value') == '') {
            $(this).attr('value', loginLabel);
        }
    })
    
    $('#passwordField')
    .focus(function(){
        if($(this).attr('value') == passwordLabel) {
            $(this).attr('value', '');
        }
    })
    .blur(function(){
        if($(this).attr('value') == '') {
            $(this).attr('value', passwordLabel);
        }
    })
    
})