$(document).ready(function(){
    $.fn.qtip.styles.tooltip = {
       width: {min:0},
       background: '#244871',
       color: '#ffffff',
       textAlign: 'left',
       padding:'8px',
       border: {
          width: 1,
          radius: 4,
          color: '#244871'
       },
       tip:{
             corner: 'leftMiddle',
             color: '#244871',
             size: {
                x: 8,             
                y : 12 
             }         
       }  
    }
    $.fn.qtip.defaults.show.delay = 0;
    $.fn.qtip.defaults.position.corner = {target:'rightTop',tooltip:'leftBottom'};
    $.fn.qtip.defaults.position.adjust.screen = true;
    $('a.tip[href][title], strong.tip').qtip({
      content: {
         text: false // Use each elements title attribute
      },
      style: 'tooltip' // Give it some style
   });
   Cufon.replace('#main h1,#main h2,#main h3,#main h4',{hover:true,textShadow: '#333 1px 1px'});
   Cufon.now();
   $('a[rel*=box]').facebox();
   $(document).ready(function() {
    $('a.mail').each(function(i) {
        var text = $(this).text();
        var address = text.replace(" [zavinac] ", "@");
        $(this).attr('href', 'mailto:' + address);
            $(this).text(address);
        });
    });
});
