$(document).ready(function(){

$('.manuclick').qtip({
   content:  { text: false },
   position: { adjust: { x: 1, y: -30 } },
   show: { 
   	when: { event: 'mouseover' },
    effect: { 
     type: 'slide' ,
     length: '400' },
   },
   hide: { 
   	when: { event: 'mouseout' },
    effect: { 
     type: 'slide',  
     length: '200' },
   },
   style: { 
    width: 200,
    padding: 5,
    background: '#598ec0',
    color: '#fff',
    textAlign: 'center',
    border: {
     width: 1, 
     color: '#00529e'
    }
   }
})

});