//******************************************************************************
// www.prominfo.org
//******************************************************************************

oldLayer=""

//******************************************************************************

// Показ выпадающего меню с id="layerName"
function showLayer(layerName) {
    if (oldLayer) {
        document.getElementById(oldLayer).style.display = 'none';
    } // if
    document.getElementById(layerName).style.display = 'block';
    oldLayer=layerName;
} // function showLayer

//******************************************************************************

// Скрытие всех выпадающих меню
function hideLayers() {
    document.getElementById('company').style.display = 'none';
    document.getElementById('directions').style.display = 'none';
} // function hideLayers

//******************************************************************************

function lightMenu(aa) {    document.getElementById(aa).style.background = '#EDF1F4';
} // function lightMenu

//******************************************************************************

function darkMenu(aa) {
    document.getElementById(aa).style.background = '#307AB7';
} // function darkMenu

//******************************************************************************

