function baseRect() {
var country = $('INPUT[name="c"]').val();
var x, y , c;
$('#sideboxBottom li[data-village_c="' + country + '"]').each(function() {
x = $(this).data('village_x');
y = $(this).data('village_y');
c = $(this).data('village_c');
//変更点
var $div = $(this).parents('div');
if ($div.hasClass('alliance_territory')) {
fillDraw([x, y, c], 'red');
} else { //↓は元のまま
fillDraw([x, y, c], 'black');
}
//ここまで
});
if (!$('#reg_box').find('TR.line_info').length) {
$('#reg_box').find('TR').each(function() {
var coord = $(this).attr('coord').match(/-?\d+/g);
if (country == coord[2]) {
fillDraw(coord, '#298DFF');
}
});
}
}

と、10.16.2400.1をベースに修正してみたけれど反映されないのです