$(document).ready(function () {

    // HiLight Map Functions and list hover functions

    $('.map').maphilight();
    $('map > area').easyTooltip();
    $('#scotland-link').mouseover(function (e) {
        $('#scotland').mouseover();
    }).mouseout(function (e) {
        $('#scotland').mouseout();
    });
    $('#northern-ireland-link').mouseover(function (e) {
        $('#northern-ireland').mouseover();
    }).mouseout(function (e) {
        $('#northern-ireland').mouseout();
    });
    $('#north-east-england-link').mouseover(function (e) {
        $('#north-east-england').mouseover();
    }).mouseout(function (e) {
        $('#north-east-england').mouseout();
    });
    $('#north-west-england-link').mouseover(function (e) {
        $('#north-west-england').mouseover();
    }).mouseout(function (e) {
        $('#north-west-england').mouseout();
    });
    $('#yorkshire-and-the-humber-link').mouseover(function (e) {
        $('#yorkshire-and-the-humber').mouseover();
    }).mouseout(function (e) {
        $('#yorkshire-and-the-humber').mouseout();
    });
    $('#east-midlands-link').mouseover(function (e) {
        $('#east-midlands').mouseover();
    }).mouseout(function (e) {
        $('#east-midlands').mouseout();
    });
    $('#wales-link').mouseover(function (e) {
        $('#wales').mouseover();
    }).mouseout(function (e) {
        $('#wales').mouseout();
    });
    $('#west-midlands-link').mouseover(function (e) {
        $('#west-midlands').mouseover();
    }).mouseout(function (e) {
        $('#west-midlands').mouseout();
    });
    $('#east-anglia-link').mouseover(function (e) {
        $('#east-anglia').mouseover();
    }).mouseout(function (e) {
        $('#east-anglia').mouseout();
    });
    $('#south-east-england-link').mouseover(function (e) {
        $('#south-east-england').mouseover();
    }).mouseout(function (e) {
        $('#south-east-england').mouseout();
    });
    $('#south-west-england-link').mouseover(function (e) {
        $('#south-west-england').mouseover();
    }).mouseout(function (e) {
        $('#south-west-england').mouseout();
    });
    $('#greater-london-link').mouseover(function (e) {
        $('#greater-london').mouseover();
    }).mouseout(function (e) {
        $('#greater-london').mouseout();
    });

});

