$(document).ready(function(){
  
  $(".showOver").hide();  
  
  $(".workTmb").hover(
    function() {
    $(".showOver",this).show();
  },
  function() {
    $(".showOver",this).show();
  }
  );
  
});
