﻿jQuery(document).ready(function(){
  $('.annotationCode').mouseover(function(e) {
    var code = $(this).text();
    $('#annotation_' + code).css('color', '#000000');
    $('#annotation_' + code).css('font-weight', 'bold');
  });
  $('.annotationCode').mouseout(function(e) {
    var code = $(this).text();
    $('#annotation_' + code).css('color', '#696969');
    $('#annotation_' + code).css('font-weight', 'normal');
  });
});

