$(document).ready(function(){
  $(".menuitem").hover(
    function(){ 
      $(this).stop(true, true).animate({backgroundPosition: '0px -70px'});
      $(this).stop(true, true).animate({backgroundPosition: '0px 0px'});
    },
    function(){ 
      $(this).stop(true, true).animate({backgroundPosition: '0px 70px'});
    }
  );
});
