
$('ul#productList li p.productHover a').each(function()
  {
    var tipText = $(this).next().text();
		var finalText = tipText.substr(3);
    $(this).qtip({
      content: finalText,
      style: { 
        width: 200,
        padding: 5,
        background: '#94ba11',
        color: 'black',
        textAlign: 'center',
        border: {
          width: 7,
          radius: 5,
          color: '#004d19'
        },
        'font-size': '1.2em',
        tip: 'topMiddle',
        name: 'dark' // Inherit the rest of the attributes from the preset dark style,
      },
			position: {
        corner: {
          target: 'bottomMiddle',
          tooltip: 'topMiddle'
        }
			},
	  show: { solo: true, when: { event: 'mouseover' } },
    hide: 'mouseleave'
  });
});
