function doBlink() {
  // Blink, Blink, Blink...
  var blink = document.getElementById("blink");
  
	if(blink == null) 
  	return;
  	
  blink.style.visibility = blink.style.visibility == "" ? "hidden" : "" 
}

function startBlink() {
  // Make sure it is IE4
  if (document.all)
    setInterval("doBlink()",500)
}

if(document.getElementById("nadpis_sibaf2009")!=null){
  document.getElementById("nadpis_sibaf2009").style.color = "rgb(14, 27, 78)";
}
setInterval("changeColor()",250);

function changeColor() {
		 var a = document.getElementById("nadpis_sibaf2009");
     if(a!=null){
      if(typeof(a.style.color) == "undefined" || a.style.color==null || a.style.color=="" || a.style.color=="rgb(14, 27, 78)" || a.style.color=="rgb(14,27,78)" || a.style.color=="#0E1B30" || a.style.color=="0E1B30" || a.style.color=="0e1b4e" || a.style.color=="#0e1b4e")
        a.style.color="red";
      else{
       if(a.style.color == "red" || a.style.color == "#ff0000" || a.style.color == "ff0000")
        a.style.color = "rgb(14, 27, 78)";
      }
     }     
    //a.innerHTML=document.getElementById("nadpis_sibaf2009").style.color+" ";
    }

