$(document).ready(function(){
  $('p.home a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 200);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 200);
      }
    );
});


// ABOUT

$(document).ready(function(){
  $('p.about a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 200);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 200);
      }
    );
});

// ACCOMPLISHMENTS

$(document).ready(function(){
  $('p.accomplishments a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 200);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 200);
      }
    );
});

// ATTRACTIONS

$(document).ready(function(){
  $('p.attractions a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 200);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 200);
      }
    );
});

// ATTRACTIONS

$(document).ready(function(){
  $('p.events a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 200);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 200);
      }
    );
});

// PROPERTIES

$(document).ready(function(){
  $('p.properties a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 200);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 200);
      }
    );
});

// MERCHANTS

$(document).ready(function(){
  $('p.merchants a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 200);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 200);
      }
    );
});
