$(document).ready(function(){
  $('.fade-button a')
    .css({ 'backgroundPosition': '0 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 300);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 300);
	  }
	);
	
	$('.fade-button input')
    .css({ 'backgroundPosition': '0 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 300);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 300);
	  }
	);
});
