$(document).ready(function(){
  $(".help_text").hide();
  
  $(".help").hover(
      function () {
      	$(this).children("div.help_text").show();
      },
      function () {
        $(".help_text").hide();
      }        
  );  
});
