/**
 * by maca89
 */
(function($) {
  
  var ANIM_TIME = 120;
   
  $(document).ready(function(){
  
    $.ifixpng('/front/images_site/pixel.gif');
    $('img[src$=.png], .fixpng').each(function($this) {
      $this = $(this);
      //$this.css("border", "1px solid red");
      return $this;
    });//.ifixpng();
    //$('*').ifixpng();
    
    $("label").not(".required").each(function($this){
      $this = $(this);
      //$("#" + $this.attr("for")).after('<span class="infoToInput">(volitelné)</span>');
      $this.after('<span class="info">(v jiném případě napište - není)</span>');
    });
    
    
    $("#frmtrainingForm-check").each(function($this){
      $this = $(this);
      
      var date = new Date;
      $this.attr('value', date.getFullYear());
      $this.css({display: 'none'});
    });
    
    $("[for='frmtrainingForm-check']").css({display: 'none'});
    
  });









})(jQuery);
