var a=0
function borba(){
if(a==0){
document.getElementById("glow").style.color="#000000"
a=1
setTimeout("borba()",600)
}
else{
document.getElementById("glow").style.color="red"
a=0
setTimeout("borba()",600)
}
}

