$(document).ready(function() {
  $("form").submit(function(){
    var check = true;
    
    $(this).find(":text[class!='optional']").each(function(){
      if($(this).val() == "") {
        check = false;
        // pridej hlasku
        if(!$(this).parent().find('.err_msg').html()) {
          $(this).parent().append('<span class="err_msg"><img src="img/error.png" alt="E"></span>');
        }
        $(this).addClass('error');        
      } else {
        // odstran hlasku
        $(this).removeClass('error');
        $(this).parent().find('.err_msg').remove();
      }
    });
    
    $(this).find("textarea[class!='optional']").each(function(){
      if($(this).val() == "") {
        check = false;
        // pridej hlasku
        if(!$(this).parent().find('.err_msg').html()) {
          $(this).parent().append('<span class="err_msg"><img src="img/error.png" alt="E"></span>');
        }
        $(this).addClass('error');        
      } else {
        // odstran hlasku
        $(this).removeClass('error');
        $(this).parent().find('.err_msg').remove();
      }
    });    
    
    $(this).find(":checkbox[class='required']").each(function(){
    
      if($(this).parent().find(":checkbox[class='required']:checked").val() != "true") {
        check = false;
        /* pridej hlasku*/
        if(!$(this).parent().find('.err_msg').html()) {
          $(this).parent().append('<span class="err_msg"><img src="img/error.png" alt="E"></span>');
        }
        $(this).parent().addClass('error');
      } else {
        /* odstran hlasku*/
        $(this).parent().removeClass('error');
        $(this).parent().find('.err_msg').remove();
      }
    });
    return check;
  });
});
