﻿$(document).ready(function(){
  $('div.spotlight a.readmore').hover(
  function() {
      
  $(this).find('img.grey').stop().animate({"opacity": "0"}, "slow");
  },
  function() {
  $(this).find('img.grey').stop().animate({"opacity": "1"}, "slow");
  });
});
