[jQuery] Superfish Click-Problem

[jQuery] Superfish Click-Problem


Hi all,
I got a little problem with superfish.
The links in the sub menu don't work every time. That means if I click
on a sub menu link it doesn't work some times and some times it works.
I didn't change the superfish.js. But I have another JS-Function that
blurs every link on my page.
It seems to work if I disable that blur-function. Could it be that the
function disrupt the links in the superfish sub menu?
Heres the blur-function:
function BlurLinks(){
    lnks=document.getElementsByTagName('a');
    for(i=0;i<lnks.length;i++){
        lnks[i].onfocus=new Function("this.blur()");
    }
}
Thanx for your help.