$(document).ready(function() { 
  $('#refs li a span').hover(function() { 
      $(this).css('background-position', '100% 0'); 
  }, function() { 
      $(this).css('background-position', '0 0'); 
  }); 
  
  $("a[rel='references']").colorbox();
  $('table tbody tr:odd').addClass('odd');
});
