function TestoLampeggiante1()
{
    var testo = document.getElementById("lampeggia1");
    if (testo.style.color == "black")
    {
        testo.style.color = "red";
    }
    else
    {
        testo.style.color = "black";
    }
	var testo = document.getElementById("lampeggia2");
    if (testo.style.color == "red")
    {
        testo.style.color = "#000066";
    }
    else
    {
        testo.style.color = "red";
    }
}
window.setInterval("TestoLampeggiante1()", 1000);