$(function() {
$.fn.qtip.styles.caresuper = { // Last part is the name of the style
   width: 200,
   background: '#FFF',
   color: 'black',
   textAlign: 'center',
   border: {
      width: 7,
      radius: 5,
      color: '#0066a1'
   },
   tip: 'topLeft',
   name: 'dark' // Inherit the rest of the attributes from the preset dark style
};
$('img[alt!=""],a[title!=""]').qtip({ style: { name: 'caresuper', tip: true, border: {
      width: 3,
      radius: 5
   } },position: { adjust: { screen: true , mouse: true} }, show: {effect: {type:'fade',length:'10'} }, hide: {effect: {type:'fade',length:'1000'} } });
});