﻿function ActivarMenuCorresponent(enllas)
{
    var link = document.getElementById(enllas);
    
    switch(enllas)
    {
        case "index":
            link.style.background = "url(imatges/fonsBotoMenu1.png)";
        break;
        
        case "empresa": 
            link.style.background = "url(imatges/fonsBotoMenu2.png)";
        break;
        
        case "qualitat": 
            link.style.background = "url(imatges/fonsBotoMenu1.png)";
        break;
        
        case "pcyma":
            link = document.getElementById("qualitat");
            link.style.background = "url(imatges/fonsBotoMenu1.png)";
        break;
        
        case "productes": 
            link.style.background = "url(imatges/fonsBotoMenu2.png)";
        break;
        
        case "serveis": 
            link.style.background = "url(imatges/fonsBotoMenu1.png)";
        break;
        
        case "referencies": 
            link.style.background = "url(imatges/fonsBotoMenu2.png)";
        break;
        
        case "dades": 
            link.style.background = "url(imatges/fonsBotoMenu3.png)";
        break;
        
        case "contactar": 
            link.style.background = "url(imatges/fonsBotoMenu2.png)";
        break;
    }
}

function MostrarInfoDelegacio(nomDelegacio)
{
    document.getElementById("delegacioCentral").style.display = "none";
    document.getElementById("delegacioBCN").style.display = "none";
    document.getElementById("delegacioIgualada").style.display = "none";
    document.getElementById("delegacioManresa").style.display = "none";
    document.getElementById("delegacioOsca").style.display = "none";
    document.getElementById("delegacioSaragossa").style.display = "none";
    document.getElementById("delegacioGirona").style.display = "none";
    document.getElementById("delegacioTarragona").style.display = "none";
    
    document.getElementById(nomDelegacio).style.display = "block";

}

