Need help with hover()

Need help with hover()

    Hey guys,

    have a little problem with the hover() function: 

    Code:
    1. $("#header-Home-li").hover(function(){
    2. $("#header-Home-li").fadeTo( "slow", 0.33 );
    3. },
    4. function() {
    5. $("#header-Home-li").fadeTo( "slow", 1 );
    6. });

    To my Problem:
    When I go over the <li> element it hovers forever when i stay on the element. The text just blink (hover) for a while.. Any ideas how i can solve this? 

    Thank you