window.onload = function() {
	var v = document.getElementById("vernostny");
	v.style.color = "white";

	if (v)
		setInterval(function() {
			var biela = (v.style.color == "white");
			v.style.color = (biela ? "yellow" : "white");
			v.style.textShadow = (biela ? "0 0 2px black" : "");
		}, 1000);
	
}
