$(document).ready(function()
{
   $('#polecane li a[title]').qtip({
      position: {
         corner: {
            target: 'topMiddle',
            tooltip: 'bottomRight'
         },
		 adjust: {
			x: 84, y: 3
		 }
      },
      style: {
		 width: 190,
		 padding: 4,
		 background: '#434240',
		 color: '#f2efe8',
		 textAlign: 'center',
		 border: {
			width: 4,
			radius: 5,
			color: '#434240'
		 },
         name: 'dark',
		 tip: true
      }
   });
});