<!--  // UK Map switcher

function hoverRegion(id) {
    if (document.getElementById) {
        document.getElementById(id).style.backgroundColor = '#ccf';
    }
}

function resetRegion (id) {
    if (document.getElementById) {
        document.getElementById(id).style.backgroundColor = '#fff';
    }
}
