//==========================================================================
// Zabezpieczenie antyspamowe (wymagane jQuery!!)
//
//Użycie:
//  <a class="mail" href="#" mail="adres/example.com"></a>
//==========================================================================

$(document).ready( function() { 
  $("a.mail_antyspam").each(function(){
      var mail = $(this).attr("mail").replace('/', '@');
      $(this).attr('href', 'mailto:' + mail);
      $(this).removeAttr('mail');
      $(this).text(mail);
    });
});

