﻿function MostrarProjecte(codiProj)
{
    OcultarProjectes();
    RestablirLinksProjectes();
    
    //Mostrem el que toca
    $("#" + codiProj).css("display", "block");
    
    //Activem l'enllaç del projecte que toca
    $("#lnk_" + codiProj).css("color", "rgb(170,170,170)");
}

function OcultarProjectes()
{
    $(".divProjecte").css("display","none");
}

function RestablirLinksProjectes()
{
    $(".enllasProjecte").css("color","rgb(1,170,0)");
}

function MostrarInfoNosaltres(persona, enllasMostrar, enllasOcultar)
{
    document.getElementById(persona).style.display = "block";
    document.getElementById(enllasMostrar).style.display = "block";
    document.getElementById(enllasOcultar).style.display = "none";
}

function OcultarInfoNosaltres(persona, enllasMostrar, enllasOcultar)
{
    document.getElementById(persona).style.display = "none";
    document.getElementById(enllasMostrar).style.display = "block";
    document.getElementById(enllasOcultar).style.display = "none";
}


