$(document).ready(function() { 
      
$('.fademe').hover(function() {
$(this).animate({backgroundPosition: '0 -40px', color:'#ececec'}, {queue:false, duration:500});
}, function() {
$(this).animate({backgroundPosition: '0 40px', color:'#959595'}, {queue:false, duration:500});
});

$(".button").hover(function() {
 $(this).css('cursor','pointer');
 }, function() {
 $(this).css('cursor','auto');
 });

}); //close doc .ready function