function initContact() {
  $('#kontakt').qtip({
     content: $('#contact').html(),
     show: 'click',
     hide: 'unfocus',
     position: {
       corner: {
         target: 'leftBottom',
         tooltip: 'topRight'
       }
     },
     style: {
       width: 600,
       tip: 'topRight',
       padding: 10,
       color: '#000',
       border: {
         radius: 5
       },
       name: 'cream'
     }
  });
}

$(document).ready(initContact);
