$(function() {
  $('a[title!=""]').qtip({ 
  style: { 
    name: 'dark', 
    tip: true, 
    padding: '3px 3px',
    border: { width: 3, radius: 0, color: '#30383f' }, 
    background: '#30383f', 
    color: '#fff',
    'font-family': 'arial',
    'font-weight': 'bold',
    'font-size': 11 
  },
  position: { corner: { target: 'bottomMiddle', tooltip: 'topMiddle' }, adjust: { y: 0, screen: true, mouse: true} },
  show: { effect: { /* type:'fade',length:'1' */ } },
  hide: { effect: { /* type:'fade',length:'1' */ } } 
  });
});



