backgroundColor animation non consistent with rollout and not working in ie

backgroundColor animation non consistent with rollout and not working in ie


Hi Guys,
I'm having a problem with the animation color core of UI, i have the
latest jquery, and ui version.
When I rollout, sometimes there is some items that stay stuck to the
rollover color.
And it just not work in ie at all.
Live example:
http://www.position-relative.com
Script:
$("a.exemp").hover(function() {
        $(this).not(":animated").animate({
            backgroundColor:"#2c2c2c",
            color:"#ffffff",
        },300)
        $(this).find("p.title").not(":animated").animate({
            color:"#ffffff",
        },300)
    },function(){
        $(this).animate({
            backgroundColor:"#e3dedd",
            color:"#000000"
        },300)
        $(this).find("p.title").not(":animated").animate({
            color:"#1b5d6b",
        },300)
    })