(function($) {
  $.fn.athleteProfile = function(options) {
    var opts = $.extend({}, $.fn.athleteProfile.defaults, options);
    return $(this).each(function() {
      var $this = $(this);
      var search = $("<div>").athleteSearch(opts);
      $this
        .append(search)
        .append(
          $("<div>" + opts.profileNumberText + "</div>")
            .css("color", "#8c0607")
            .css("width", "100%")
            .css("text-align", "center")
            .css("margin-top", "18px"))
    });
  }
  $.fn.athleteProfile.defaults = {
    noSelectionText: "Choose an athlete!",
    profileNumberText: "Profiles of 200,000 athletes",
    onChoose: function(id) { document.location.href = "/athlete/" + id }
  };
})(jQuery);

