jQuery(document).ready(function($) {
/*  $('.screenshot img').each(function(){
    $(this).appendTo($(this).closest('.screenshot'));
  });
  $('.screenshot a').each(function(){
    $.data(this, 'background', $(this).css('background'));
    $(this).css({'background':'transparent'});
  });
  $('.screenshot a').bind({
    mouseenter:function(){
      $(this).css({'background':$.data(this, 'background')});
    },
    mouseleave:function(){
      $(this).css({'background':'transparent'});
    }
  });
  */
  $('.screenshot a').bind({
    mouseenter:function(){
      $(this).find('.overlay').show();
    },
    mouseleave:function(){
      $(this).find('.overlay').hide();
    }
  });
});