$(document).ready(function(){
  $('p.menubutton01 a')
    .css({ 'backgroundPosition': '0  0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 280);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 400);
	  }
	);
});

$(document).ready(function(){
  $('p.menubutton02 a')
    .css({ 'backgroundPosition': '0 -50' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 280);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 400);
	  }
	);
});

$(document).ready(function(){
  $('p.menubutton03 a')
    .css({ 'backgroundPosition': '0 -100' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 280);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 400);
	  }
	);
});

$(document).ready(function(){
  $('p.menubutton04 a')
    .css({ 'backgroundPosition': '0 -150' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 280);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 400);
	  }
	);
});

$(document).ready(function(){
  $('p.menubutton05 a')
    .css({ 'backgroundPosition': '0 -200' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 280);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 400);
	  }
	);
});


