Не меняется цвет текста. Фон меняется, а текст нет. Где-то ступил походу. Подскажите пожалуйста
$(document).ready(function(){
$('li').hover(
function(){
var cssObj = {
'background': '#09F',
'color' : '#fff',
'transition': 'all 0.3s'
};
$(this).css(
cssObj);
},
function(){
$(this).css({'background':'#FFF', 'color': '#000', 'transition': 'all 0.3s'});
}
);
});