// JavaScript Document
$(document).ready(function(){
  $('p.welcome-cta-button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 400);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 400);
      }
    );
	
	$('p.bio-cta-button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 400);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 400);
      }
    );
	
	$('p.news-cta-button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 400);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 400);
      }
    );
	
	$('p.media-cta-button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 400);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 400);
      }
    );
	
	$('p.contact-cta-button a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 400);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 400);
      }
    );
	
	
});

