﻿// jQuery behaviours for the fixtures page

$(document).ready(function()
   {
      // attach events to event links in the calendar
      $('table.calendar td.event a').mouseover(function(){
         $('#'+$(this).attr('rel')).toggleClass('hovered');
      });
      
      $('table.calendar td.event a').mouseout(function(){
         $('#'+$(this).attr('rel')).toggleClass('hovered');
      });
   }
);


