$(document).ready(function()
{
	$('.givetip a[title]' ).qtip({
      position: {
         corner: {
            target: 'topMiddle',
            tooltip: 'bottomMiddle'
         }
      },
      style: {
		 name: 'dark',
		 'font-size': 13,		 
         padding: '7px 7px',
		 background: '#222',
		 color: '#ccc',
         width: {
            max: 400,
            min: 0
         },
		 border: {
         width: 4,
         radius: 5,
         color: '#222'
      			},
         tip: true
      }
   });
});
