<!--
	function WindowOpenUp(sURL)
	{
		window.open(sURL,null,'height=380,width=640,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes',false);
	}
//-->

function blink_text() {
	document.getElementById("vafs").style.color="red";
	setTimeout("bluecolor()", 1000);
}


blink_text();

function bluecolor() {
	document.getElementById("vafs").style.color="#2b62b4";
	setTimeout("blink_text2()", 1000);
}
function blink_text2() {
	document.getElementById("vafs").style.color="red";
	setTimeout("bluecolor()", 1000);
}
<!--
	function WindowOpenUp(sURL)
	{
		window.open(sURL,null,'height=380,width=640,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes',false);
	}
//-->

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav2");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;





