<!--
$(document).ready(function() {
  $('a').each(function() {
     if( $(this).attr('href').indexOf('__kukac__') != -1 && $(this).attr('href').indexOf('__pont__') != -1) {
       var myMail=$(this).attr('href');
       $(this).attr('href', myMail.replace('__kukac__','@').replace('__pont__','.'));
     }
     if( $(this).text().indexOf('__kukac__') != -1 && $(this).text().indexOf('__pont__') != -1) {
       var myMailText=$(this).text();
       $(this).html(myMailText.replace('__kukac__','@').replace('__pont__','.'));     
     }
  });
});
-->
