function time() {
var today = new Date();
var hour = today.getHours();
var minute = today.getMinutes();
var second = today.getSeconds();
var line = "–";
var twoPoints;
function changeColor() {
if (second % 2 == 0){
this.style.color="red";
}
}