jQuery Animuj kolor tekstu w dymku

Korzystając z następującego kodu, próbując animować kolor czcionki w dymku, podobnie jak w przypadku animacji koloru obramowania na dole. Zmiana koloru obramowania na dole działa dobrze, ale kolor czcionki po prostu nie wydaje się zmieniać. Pełny przykład można zobaczyć tutaj:http://www.buenolisto.com/alma. Każda pomoc jest bardzo mile widziana. Dzwonię już do interfejsu jQuery z:https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.js

jQuery("li.social").hover(function() {
jQuery(this).find("img").stop(true, true).animate({
    'marginTop': "-=20px"
}, 'fast');
}, function() {
jQuery(this).find("img").stop(true, true).animate({
    'marginTop': "+=20px"
}, 'fast');
})
jQuery("li.reservas").hover(function() {
jQuery(this).find("img").stop(true, true).fadeOut({
    'marginTop': "-=30px"
}, 'slow');
}, function() {
jQuery(this).find("img").stop(true, true).fadeIn({
    'marginTop': "+=30px"
}, 'slow');
})
jQuery("ul.menu li").hover(function() {
jQuery(this).find("a").stop(true, true).animate({
    'borderBottomColor': '#2E9ECE',
    'color': '2E9ECE'
}, 'slow');
}, function() {
jQuery(this).find("a").stop(true, true).animate({
    'borderBottomColor': '#FFDF85',
    'color': 'FFDF85'
}, 'slow');
})​

questionAnswers(1)

yourAnswerToTheQuestion