$(window).load(function(){ 
    $('div.siteinfo').qtip({
       content: 'Developed by Deepcore<br />More info <a href="http://kostas.deepcore.gr">here</a> and <a href="http://www.deepcore.gr">here</a>.',
       show: 'mouseover',
       hide: { when: 'mouseout', fixed: true },
       position: {
             corner: {
                target: 'topLeft',
                tooltip: 'bottomRight'
             }
          },
        style: { 
           background: '#444',
           color: '#fff',
           tip: true,
           border: {
                 radius: 8,
                  color: '#444'
              },
        }
    });
    $('div.siteinfo').css("cursor","pointer");
});