/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function swapOn(id) {
    var idElemento;
    idElemento = id.getAttribute('id');

    if (idElemento == 'btprincipal') {
        document.getElementById('imgprincipal').src = 'img/click-principal.png';
    }else if (idElemento == 'btinstitucional') {
        document.getElementById('imginstitucional').src = 'img/click-institucional.png';
    }else if (idElemento == 'btservicos') {
        document.getElementById('imgservicos').src = 'img/click-servicos.png';
    }else if (idElemento == 'btlocalizacao') {
        document.getElementById('imglocalizacao').src = 'img/click-localizacao.png';
    }
}

function swapOut(id) {
    var idElemento;
    idElemento = id.getAttribute('id');

    if (idElemento == 'btprincipal') {
        document.getElementById('imgprincipal').src = 'img/btinvisivel.png';
    }else if (idElemento == 'btinstitucional') {
        document.getElementById('imginstitucional').src = 'img/btinvisivel.png';
    }else if (idElemento == 'btservicos') {
        document.getElementById('imgservicos').src = 'img/btinvisivel.png';
    }else if (idElemento == 'btlocalizacao') {
        document.getElementById('imglocalizacao').src = 'img/btinvisivel.png';
    }
}

function ativarLink(id){
    var menuArray = new Array();
    menuArray = document.getElementsByTagName('img');

    for (var i = 0; i < menuArray.length; i++) {
        if (menuArray[i].className == "btmenu"){
            menuArray[i].src = 'img/btinvisivel.png';
        }
    }

    var idElemento;
    idElemento = id.getAttribute('id');

    if (idElemento == 'btprincipal') {
        document.getElementById('imgprincipal').src = 'img/click-principal.png';
    }else if (idElemento == 'btinstitucional') {
        document.getElementById('imginstitucional').src = 'img/click-institucional.png';
    }else if (idElemento == 'btservicos') {
        document.getElementById('imgservicos').src = 'img/click-servicos.png';
    }else if (idElemento == 'btlocalizacao') {
        document.getElementById('imglocalizacao').src = 'img/click-localizacao.png';
    }else if (idElemento == 'btcontato') {
        document.getElementById('imgcontato').src = 'img/click-contato.png';
    }else if (idElemento == 'btBancoTalentos') {
        document.getElementById('imgservicos').src = 'img/click-servicos.png';
    }else if (idElemento == 'btLogo') {
        document.getElementById('imgprincipal').src = 'img/click-principal.png';
    }

    document.getElementById('banner').focus();
}

