$(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");

  $('div#sports_list ul', 'body.front').addClass('popup');
    
  // Set click function to whole div
  $('div#sports_list p', 'body.front').click(function() {
    // Close any open blocks
    //$('ul.popup', 'body.front div#sports_list').slideUp("slow");
    // then toggle item of interest
    $(this).next("ul.popup").slideToggle("slow");
  }); 

  // Make the title a link
  $('div.view-data-node-title', 'div.view-item-upcoming-deadlines').each(function() {
    $(this).html('<a href="#" onclick="return false;" title="Deadline details">' + $(this).text() + '</a>');
  });
});

