function chem(){
  $(".slepts_pasts").each(function(i){
    var a = $(this).html();
    a = a.replace(" PIE ", "@");
    a = a.replace(" PUNKTS ", ".");
    $(this).html(a);
  });
}
