	var count = 0;
	var links = new Array();
	var numlinks = 0;
	function init() {
		links = document.getElementsByName("flasher");
		if ( links != null ) {
			setInterval("changeIt()", 800);
		}
	}
	function changeIt() {
		if ( count == 0 ) {
			for ( i = 0; i < links.length; i++ ) {
				links[i].style.color="#A52A2A";
				//links[i].style.backgroundColor="#273B54";
			}
			count++;
		} else if ( count == 1 ) {
			for ( i = 0; i < links.length; i++ ) {
				links[i].style.color="#003366";
				//links[i].style.backgroundColor="#ffffff";
			}
			count--;
		}
	}
	/*
	function init() {
		var current = 0;
		while ( document.getElementById('flasher'+current) != null ) {
			links[current] = document.getElementById('flasher'+current);
			current++;
		}
		if ( links != null ) {
			setInterval("changeIt()", 800);
		}
	}
	*/
if (window.addEventListener)
window.addEventListener("load", init, false)
else if (window.attachEvent)
window.attachEvent("onload", init)
else if (document.all)
window.onload=init
	
