bind contextmenu not working fully

bind contextmenu not working fully

I'm having some problems with the bind contextmenu for images with Jquery. It works perfectly on some browsers, but for FF2 and some older versions of IE it is blocking everything.

I have this on my main js script:

$(document).ready(function()
{
    $("img").bind("contextmenu", function(e)
    {
       return false;
    });
});


It works wonders on Firefox 3, some times 2 and in most of the IE versions, but some times, it, instead of blocking only the images, block everything.

What I have noticed is that this is happening so far when the site is on Arabic language.

Can anyone give me a clue so I can fix this?

Thanks in advance.