$(document).ready(function () {

  $(".player").each(function()
  {
    $(this).qtip({
      content: $(this).children("p.tooltip").text(),
      show: 'mouseover',
      hide: 'mouseout',
      style:{
        border: {
          width: 0
        },
        width: '229px',
        'text-align': 'center',
        'display': 'block',
        'margin': 0,
        'background': 'transparent url(/sites/all/assets/images/fundraise/tooltip.gif) 50% 100% no-repeat',
        'padding': '10px 12px 30px 12px',
        'border-top': '6px solid #F3F2EE',
        'font-size': '0.75em',
'color': '#575757',
'line-height': '1.65em'
      },
      position: {
        corner: {
           target: 'topMiddle',
           tooltip: 'bottomMiddle'
        },
 adjust: { x: 0, y: 0 } 
     }

    });
  });

});