[jQuery] Problem with "$(this).animate()" on IE (naturally)!!

[jQuery] Problem with "$(this).animate()" on IE (naturally)!!


Hi,everyone,
I try to do menu with animate efect, but it doesn't work on IE or work
in a strange way: animate "height" and "margin", but not the colors,
or don't animate things in second function...?!! This is my function:
"
$(document).ready(function(){
    $(".menuEffect").hover(function() {
            $(this).css({color:"white"});
            $(this).animate({height:"50px", marginTop:"0px", borderRight: "1px
solid white"}, 800 );
        },
        function() {
            $(this).stop();
            $(this).animate({height:"25px", marginTop:"25px", borderRight: "1px
solid black", color:"black"}, 400);
        }
    );
});
"
Can anyone tell me what may be the problem and how can I deal with
it? :)
10x a lot and