$(document).ready(function(){
$('.belka_temat_numeru').children('a').qtip({
   position: {
      corner: {
         target: 'topMiddle',
         tooltip: 'bottomLeft'
      }
   },
   style: { 
      padding: 0,
      background: '#fff',
      color: '#000',
      textAlign: 'center',
      border: {
         width: 7,
         radius: 6,
         color: '#fff'
      },
      tip: { // Now an object instead of a string
         corner: 'bottomLeft', // We declare our corner within the object using the corner sub-option
         color: '#fff',
         size: {
            x: 16, // Be careful that the x and y values refer to coordinates on screen, not height or width.
            y : 10 // Depending on which corner your tooltip is at, x and y could mean either height or width!
         }
	  },
      name: 'dark' // Inherit the rest of the attributes from the preset dark style
   }

});
});
