I have this code
$(\'#uiAdminPanelMenu li a\').hover( function(){
$(this).css(\'background-color\', \'#D3E1FA\';
},
function(){
$(this).css(\'backgroun
You can accomplish the same thing with CSS3 transitions. The result will almost be the exact same.
#uiAdminPanelMenu li a {
background-color: F4F4F4;
-webkit-transition: background-color 0.4s ease;
-moz-transition: background-color 0.4s ease;
-o-transition: background-color 0.4s ease;
transition: background-color 0.4s ease;
}
#uiAdminPanelMenu li a:hover {
background-color: D3E1FA;
}