$(document).ready(function() {
  // For summary pop-ups
  $("div.sports_panel_summary_popup").parents('tr').hoverIntent(function(){
      $("div.sports_panel_summary_popup", $(this)).show("slow");
    }, function(){
      $("div.sports_panel_summary_popup", $(this)).hide("slow");
    }
  );
  // For home game bolding
  $("table td div.Home").parents("tr").css("font-weight", "bold");
});
