$(document).ready(function()
{
   $('tr td.update').qtip({
      position: {
         corner: {
            target: 'topMiddle',
            tooltip: 'bottomMiddle'
         }
      },
      style: {
         padding: '5px',
		 background: '#fff',
		 color: '#1e1e1e',
		 border: {
         width: 1,
         radius: 3,
         color: '#1e1e1e'
      },
         tip: true
      }
   });
});
