// global network page interactive maps
function showEurope() {
    document.getElementById('map').className = "showeurope";
}

function hideEurope() {
//    document.getElementById('map').className = "imagedefaulteurope";
}

function showAsia() {
    document.getElementById('map').className = "showasia";
}

function hideAsia() {
    document.getElementById('map').className = "imagedefaulteurope";
}

function showAfrica() {
    document.getElementById('map').className = "showafrica";
}

function hideAfrica() {
    document.getElementById('map').className = "imagedefaulteurope";
}

function showAustralasia() {
    document.getElementById('map').className = "showaustralasia";
}

function hideAustralasia() {
    document.getElementById('map').className = "imagedefaulteurope";
}

function showAmericas() {
    document.getElementById('map').className = "showamericas";
}

function hideAmericas() {
    document.getElementById('map').className = "imagedefaulteurope";
}



