function TestoLampeggiante(nome)
{
    var testo = document.getElementById(nome);
    if (testo.style.color == "#ffffff")
    {
        testo.style.color = "#ff8f59";
    }
    else
    {
        testo.style.color = "#ffffff";
    }
}

