$(document).ready(function() {  
    var webroot = "/";
    if(this.getElementById('webroot'))
      {
      webroot = this.getElementById('webroot').value;
      }
      
    $('input').focus(function(){
        if(typeof(  info ) != "undefined")
          {
          $('.form-note#note-'+this.id).html("<img src=\""+webroot+"images/icon_info.gif\"/> "+info[this.id]);
          }
        });
    
    $('input').blur(function(){
        $('.form-note#note-'+this.id).html("&nbsp;");
        });
     
});