I would advise to add the window.onload = initialfunc() then add to that function addLinkMouseEvents(); instead of in the body tag.
Im not too hot on mouse event triggers so Im confussed about the currAnch.onmouseover method but Im sure that the document.addEventListener method is best for FF and the document.attachEvent is for IE.
Hope this helps.
Code:
//...
var d = document.getElementsByTagName('a');
for(i=0; i < d.length; i++)
{
var currAnch = d[i];
document.addEventListener("mouseover", getStatus(this), true); //double check if this is mouseover or onmouseover I know its a little different for EventListener
document.attachEvent("onmouseover", getStatus(this));
//...
Kind regards
Dal
Bookmarks