function init(){
    setInterval(blinker, 1000);
}

function blinker(){
    var element;
    element = document.getElementById("blink");
    if(element.style.color == "white"){
        element.style.color = "red";
    }
    else {
        element.style.color = "white"; //backgroundcolor
    }
}
