$(document).ready(function()
{
    $('table[title].motto').qtip({
      position: {
         corner: {
            target: 'topMiddle',
            tooltip: 'bottomMiddle'
         }
      },
       style: {
          border: {
	         width: 6,
	         radius: 6,
	         color: '#FF0000'
          },
          width: 400,
           background: '#FFFFFF',
      color: 'black',
         'font-size': 14 , 
         'font-weight': 'bold',
          padding: 10, 
          textAlign: 'center',
          tip: true 
       },
       show: { effect: { type: 'slide',length: 200 } }

   });
});
