$(document).ready(function() {
  
  $("#mobile-nav").hide();
  
  $("#sports-selector").click(function() {
    $("#mobile-nav").toggle();
  });
});
