jQuery(document).ready(function(){
  jQuery('p.btn-home a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        jQuery(this)
          .stop()
          .animate({
            'opacity': 0
          }, 450);
      },
      function(){
        jQuery(this)
          .stop()
          .animate({
            'opacity': 1
          }, 450);
      }
    );
});
jQuery(document).ready(function(){
  jQuery('p.btn-services a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        jQuery(this)
          .stop()
          .animate({
            'opacity': 0
          }, 450);
      },
      function(){
        jQuery(this)
          .stop()
          .animate({
            'opacity': 1
          }, 450);
      }
    );
});
jQuery(document).ready(function(){
  jQuery('p.btn-contact a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        jQuery(this)
          .stop()
          .animate({
            'opacity': 0
          }, 450);
      },
      function(){
        jQuery(this)
          .stop()
          .animate({
            'opacity': 1
          }, 450);
      }
    );
});
