$(document).ready(function(){
  $(".offers_list .offer a.thumbnail").not('.nophoto').hover(function(){
    $(this).children("span").fadeIn(300);
  }, function(){
    $(this).children("span").fadeOut(100);
  });
});
