/* EVENTOS RELACIONADOS A INTERFACE */

$().ready(function(){
    
    $('.field-001').focus(function(){
        $(this).attr('class', 'field-001-focus');
    }).blur(function(){
        $(this).attr('class', 'field-001');
    });
    
});
