stop() function does not work correctly

stop() function does not work correctly

[edit] i moved this post to using jquery, hope that here are more people so that somebody of them can helb me. Thx anyway [/edit]


shows one question, in my opinion its a problem.

    $(".menuitem").hover(
        function(){
        //    $(this).stop(True,True);
            $(this).fadeTo("slow",1);
        },
        function(){
            $(".menuitem").stop(True,True).fadeTo("slow",0.5);
        }
    );

in my case all menuitem s are faded to .5. but when I move too fast with my mouse all items are blinking for a few seconds. so I looked around and found this stop function. But it doesn't work correctly. 

When I comment the first stop out, nothing will work at all. but with only the second stop, the item will fade to 1 but it will not get back to 0.5. It seems that the stop funktion will also kill the future fade call. I tried also in two different lines, but nothing. 

Is there a work around how to solve this??


Thank you very much for your help!

LG HWM.Rocker