﻿function ActivarMenuCorresponent(enllas)
{
    var link = document.getElementById(enllas);
    
    switch(enllas)
    {
        case "inici":
            link.style.background = "url(imatges/botoMenu1.png)";
        break;
        
        case "empresa":
            link.style.background = "url(imatges/botoMenu2.png)";
        break;
        
        case "serveis":
            link.style.background = "url(imatges/botoMenu2.png)";
        break;
        
        case "noticies":
            link.style.background = "url(imatges/botoMenu2.png)";
        break;
        
        case "aliances":
            link.style.background = "url(imatges/botoMenu2.png)";
        break;
        
        case "contacte":
            link.style.background = "url(imatges/botoMenu2.png)";
        break;
    }
}


function MostrarAliansa(aliansa)
{
    document.getElementById('divAlCompsaOnline').style.display = "none";
    document.getElementById('divAlGenerali').style.display = "none";
    
    document.getElementById(aliansa).style.display = "block";

}
