コードを短くする方法はありますか。すべて同じことを行う約 15 個の関数を追加する必要があります。
$(document).ready(function() {
$('.map-highligh').maphilight({
});
//north roll over
$('#hilightlink').mouseover(function(e) {
$('#north').mouseover();
}).mouseout(function(e) {
$('#north').mouseout();
}).click(function(e) { e.preventDefault(); });
//Wellington roll over
$('#hilightlink-wel').mouseover(function(e) {
$('#wellington').mouseover();
}).mouseout(function(e) {
$('#wellington').mouseout();
}).click(function(e) { e.preventDefault(); });
});