$(document).ready(function(){
  $('.j-hide').hide();
  $('.program_text').mouseover(function() {
    $(this).children(".description").show();
  });
  $('.program_text').mousemove(function(e) {
    $(this).children(".description").css('top',e.pageY)
    $(this).children(".description").css('left',e.pageX)
  });
  $('.program_text').mouseout(function() {
    $(this).children(".description").hide();
  });
});
