$(document).ready(function(){
$('#help_plate').hide(); 
    $("#help_fg").bind('mouseenter', function() {
      $("#help_plate").show("fast", function(){
          $(this).children().show("slow");
          shown = true;
        });
      }
    );
    $("#help_plate").bind('mouseleave',function() {
          $("#help_plate").hide("fast");
          shown = false;
        
      });
});

