jQuery Анимация текста цвета при наведении

Используя следующий код, пытаюсь заставить цвет шрифта анимироваться при наведении, подобно тому, как у меня есть анимация цвета нижней границы. Изменение цвета border-bottom работает, но цвет шрифта просто не изменится. Полный пример можно увидеть здесь:http://www.buenolisto.com/alma, Любая помощь очень ценится. Я также уже вызываю пользовательский интерфейс jQuery с: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');
})​

Ответы на вопрос(1)

Ваш ответ на вопрос