/**
 * Set grayed indicator icon visible when autocompleter stopped.
 */
function afterStopIndicator(input_field, indicator) {
  $(indicator + "_grayed").show();
    }
  
/**
 * Set grayed indicator icon invisible when autocompleter started.
 */
function beforeStartIndicator(input_field, indicator) {
  $(indicator + "_grayed").hide();
}

