// JavaScript Document
$(document).ready(function(){
  $('p.home-cta-button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 300);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 300);
      }
    );
	
	$('p.clients-cta-button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 300);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 300);
      }
    );
	
	$('p.graphicdesign-cta-button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 300);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 300);
      }
    );
	
	$('p.webdesign-cta-button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 300);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 300);
      }
    );
	
	$('p.logodesign-cta-button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 300);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 300);
      }
    );
	
	$('p.cv-cta-button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 300);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 300);
      }
    );
	
	$('p.contact-cta-button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 300);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 300);
      }
    );
	
	$('p.blog-cta-button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 300);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 300);
      }
    );
	
	
	
});



