//Fnce na zaskrtnuti a odskrtnuti vsech chekboxu
jQuery.fn.extend({
   check: function() {
     this.each(function() { this.checked = true; });
   },
   uncheck: function() {
     this.each(function() { this.checked = false; });
   }
 });

