jQuery(document).ready(function(){
    jQuery('#loginblock input[type=submit]').click(function(){
        _encoded = hex_sha1( jQuery('#pass').attr('value') );
        jQuery('#pass').attr('value', _encoded);
    });
});


