$(document).ready(function(){
  $('p.cta-button a.blog')
    .css({ 'backgroundPosition': '0 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 250);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 250);
	  }
	);
});

$(document).ready(function(){
  $('p.cta-button a.forum')
    .css({ 'backgroundPosition': '-76px 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 250);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 250);
	  }
	);
});
$(document).ready(function(){
  $('p.cta-button a.imagehoster')
    .css({ 'backgroundPosition': '-148px 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 250);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 250);
	  }
	);
});
