$(document).ready(function(){
  $('p.cta-button a')
    .css({ 'backgroundPosition': '0 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 500);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 900);
	  }
	);
});


$(document).ready(function(){
  $('p.cta-button-gallery a')
    .css({ 'backgroundPosition': '0 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 500);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 900);
	  }
	);
});


$(document).ready(function(){
  $('p.cta-button-shop a')
    .css({ 'backgroundPosition': '0 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 500);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 900);
	  }
	);
});


$(document).ready(function(){
  $('p.cta-button-news a')
    .css({ 'backgroundPosition': '0 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 500);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 900);
	  }
	);
});


$(document).ready(function(){
  $('p.cta-button-about a')
    .css({ 'backgroundPosition': '0 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 500);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 900);
	  }
	);
});


$(document).ready(function(){
  $('p.cta-button-contact a')
    .css({ 'backgroundPosition': '0 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 500);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 900);
	  }
	);
});
