﻿


function loadEvents() {


    $("#map").hover(function () {
        hideAll();
        $('.map').show();


    });


    $("#map1").hover(function (event) {

        
        hideAll();
        $('.mapScotland').show();

    });

    $('#map2').hover(function () {
        hideAll();
        $('.mapWales').show();


    });

    $('#map10').hover(function () {
        hideAll();
        $('.mapNorthengland').show();


    });

    $('#map11').hover(function () {
        hideAll();
        $('.mapMidlands').show();


    });

    $('#map12').hover(function () {
        hideAll();
        $('.mapSouthengland').show();


    });

    $('#map13').hover(function () {
        hideAll();
        $('.mapLondon').show();


    });
    $('#map23').hover(function () {
        hideAll();
        $('.mapWestengland').show();


    });
}

function hideAll() {
    $('.map').hide();
    $('.mapScotland').hide();
    $('.mapWales').hide();
    $('.mapLondon').hide();
    $('.mapSouthengland').hide();
    $('.mapMidlands').hide();
    $('.mapNorthengland').hide();
    $('.mapWestengland').hide();

}



