  $(document).ready(function(){
    
    $("#mini_fotos a").hover(function () {
      $(this).css({'background-color' : '#52bba9', 'cursor' : 'pointer'});
    }, function () {
      $(this).css({'background-color' : '#287062'});
    });

  });
