jQuery(document).ready(function(){

  jQuery("#helpme").qtip({
    content: $('#help_info').html(),
    show: 'mouseover',
    hide: 'mouseout',

    position: {
          corner: {
            target: 'bottomLeft',
            tooltip: 'topRight'
          }
      },
    style: {
      tip: true,
      name: 'dark',
      padding: 10,
      width:600,
      border: {
        width: 10,
        radius: 10
      }
    }
  });

});
