$('ul#range-drop li#product1')
.css( {backgroundPosition: '-914px 0px'} )
.mouseover(function(){
if (!($('ul#range-drop li#product1 a').hasClass("current")) ) {
$(this).css( {background: "none"} );
$(this).parent().stop().animate({backgroundPosition: '-914px -12px' }, {duration:400, easing: 'easeInOutQuint'});
}
})
.mouseout(function(){
$(this).parent().stop().animate({backgroundPosition : '-914px 0px'}, {duration:400, easing: 'easeInOutQuint'});
});
此代码块针对具有不同背景位置值的每个导航元素重复