﻿
$(document).ready(function(){


  $('#coin-slider').coinslider({ width: 700, navigation: true, delay: 7000 });
   $('#coin-slider').css('visibility', 'visible');
  $('p.donateButton a')
    .css({  'backgroundPosition': '0 0' })
    .hover(
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 0
          }, 10);
      },
      function(){
        $(this)
          .stop()
          .animate({
            'opacity': 1
          }, 10);
      }
    );
});


