 $(document).ready(function() {
$("li a").hover(function() {
	$(this).stop().animate({opacity: 0.65, backgroundPosition: '0px 0px'},200);
},function() {
	$(this).stop().animate({opacity: 1, backgroundPosition: '165px 0px'},200);
});

   

});
