$(document).ready(function(){
$('.about li').hover(function(){
$(this).stop(true, true).animate({
opacity: 0.4
},
function() {
$(this).animate({ opacity: 1});
});
},
function() {
$(this).stop(true, true).animate({
opacity: 0.1,
'backgroundPosition': '0 0'
},
function() {
$(this).animate({ opacity: 1 });
});
});
});
Как-то так