/* Mini-script to add banding and style classes to table of roster members */

$(document).ready(function(){
  $(".team_table_results tr:odd").css("background-color", "#eeeeee");
  $("#rosterNav li:last").addClass("lastYear");
  $(".team_table_results tr td::nth-child(2)").addClass("playerName");
});
