activateLinks: function (nodes) { for(var i = 0; i < nodes.length; i++) { var thisNode = nodes[i]; var evRes; if(thisNode.tagName.toUpperCase() == 'A'){ if(thisNode.href == KFSWScreen.selfURL){ /* alert(thisNode) */; thisNode.className = "current"; } KFSWFunctions.addEvent(thisNode, "mouseover", KFSWScreen.mouseOverLinks, false); KFSWFunctions.addEvent(thisNode, "mouseout", KFSWScreen.mouseOutLinks, false); KFSWFunctions.addEvent(thisNode, "click", KFSWScreen.mouseClickLinks, false); } } }