/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function event() {
  $('#eventsLink').animate({
    backgroundPosition: '0px 0px',
    fontWeight: 'normal'
  });
  $('#eventsLink').animate({
    backgroundPosition: '0px -80px',
    fontWeight: 'bold'
  }, 700, function() {
    // Animation complete.
    event()
  });
});