SearchField.prototype.collapse = function () {
    var $target = $(this.$element.data('toggle'))
    this.$element.parent().animate({ width: '-=' + this.options.increment }, 'fast');
    $target.css('visibility', 'visible')
  }