// JavaScript Document
var clock = "false";
function TestoLampeggiante()
{
    var testo = document.getElementById("blink");
	
    if (clock == "false")
    {
        testo.style.color = "white";
		clock = "true";
    }
    else
    {
        testo.style.color = "#1D95C7";
		clock = "false";
    }
}
window.setInterval("TestoLampeggiante()", 1000);


