
jQuery(document).ready(function($){
// Fade for team pictures
  $('div.cup a').hover(function () {
    $(this).find('strong').stop().fadeTo('normal', 1);
  }, function () {
    $(this).find('strong').stop().fadeTo('normal', 0);
  });
  
});
