$(document).ready(function()
{
   $('ul.bklist li a[title]').qtip({
      position: {
         corner: {
            target: 'topMiddle',
            tooltip: 'bottomMiddle'
         }
      },
      style: {
         name: 'light',
         padding: '0',
         background: '#E2E2E2',
         'font-size': 11,
         width: {
            max: 200,
            min: 0
         },
         border: {
         	radius: 10
         },
         tip: true
      },
      show: {
      	 delay: 3,
      	 effect: {
      	 	length: 100
      	 }
      },
      hide: {
      	 effect: {
      	 	length: 300
      	 }
      }
   });
});