<!--

      // This script implements a simple version of 
      // the general method of Dynamic Highlighting of Arrays of Web-links, for which the patent is pending

//==    PULSE LINKS SECTION START

	//==    SETTINGS START

var pulseEnable = true;			// false
var containerID = "Number1";
var hiliTag = "a";
var hiliProp = "color";			// "backgroundColor"
var normColor = "#0000CC";		// "transparent"
var hiliColor = "#FF0000";		// "#FFCC00"
var hiliLimit = 5;

	//==    SETTINGS END

var DtimerON = "";
var doFlag = false;
var featLinks;
var hiliCount = 0;

function pulseInit() {
	if (document.getElementById(containerID)) {
		var featuredTable = document.getElementById(containerID);
		featuredTable.onmouseover = DclearT;
		// featuredTable.onmouseout = DsetT;
		featLinks = featuredTable.getElementsByTagName(hiliTag);
		// 	for (var i = 0; i < featLinks.length; i++) {
		// 	featLinks[i].onmouseover = DclearT;
		// 	}
		DsetT();
	}
}

function DsetT() {
	for (var i = 0; i < featLinks.length; i++) {
		eval("featLinks[i].style."+hiliProp+" = (doFlag) ? hiliColor : normColor;");
	}
	doFlag = !doFlag;
	hiliCount++;
	if (hiliCount > hiliLimit*2) {
		DclearT();
	}
	DtimerON = setTimeout("DsetT()", 1400);
}
function DclearT() {
	window.clearTimeout(DtimerON);
	for (var i = 0; i < featLinks.length; i++) {
		eval("featLinks[i].style."+hiliProp+" = normColor;");
	}
}

if (pulseEnable) {
	window.onload = pulseInit;
}

//==    PULSE LINKS SECTION END

//== Copyright ROSTOC.us 2010 - published 04.22.2010, modified 05.11.09 for "point to stop" 

//-->

