$(document).ready(function(){
   $('#volby-map a[href][title]').qtip({
      content: {
         text: false
      },
      style: {
         width: 160,
         padding: 2,
         background: '#FFF',
         color: 'black',
         textAlign: 'center',
         fontSize: '14px',
         border: {
           width: 5,
           radius: 5,
           color: '#F16804'
         },
         name: 'cream' // Inherit the rest of the attributes from the preset dark style
      },
      position: {
        corner: {
          target: 'bottomMiddle',
          tooltip: 'topMiddle'
        }
      }
   });
});

