jQuery.noConflict();
jQuery(document).ready(function(){
    
     jQuery(".charities_grid_large ul li img").hover(
          function() {
               jQuery(this).stop().fadeTo("fast", .5);
          },
          function() {
               jQuery(this).stop().fadeTo("fast", 1);
     });
    
    jQuery(".charities_grid_home ul li img").hover(
          function() {
               jQuery(this).stop().fadeTo("fast", .5);
          },
          function() {
               jQuery(this).stop().fadeTo("fast", 1);
     });

    
    
});


