$(document).ready(function(){
  $('#mainmenu a')
    .css({ 'backgroundPosition': '0 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 400);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 400);
	  }
	);
});
