I have this code
$(\'#uiAdminPanelMenu li a\').hover( function(){
$(this).css(\'background-color\', \'#D3E1FA\';
},
function(){
$(this).css(\'backgroun
You want to use animate(), but you also need the Color Plugin for jQuery.
With the color plugin included, the following code works well:
$('#uiAdminPanelMenu li a').hover( function(){
$(this).animate({'background-color': '#D3E1FA'}, 'slow');
},
function(){
$(this).animate({'background-color': '#F4F4F4'}, 'slow');
});