(function($){
	// nastaveni polozky jako povinne v zavislosti na podmince
	$.fn.setObligatory = function(condition){
		if(condition){
			this.each(function(){
				$(this).rules('add', {
					required: true
				});
				if( ! $(this).parent('td').siblings('th').children('span.obligatory').length){
					$(this).parent('td').siblings('th').append('<span class="obligatory">*</span>');
				} else {
					$(this).parent('td').siblings('th').children('span.obligatory').show();
				}
			});
		} else {
			this.each(function(){
				$(this).rules('remove', 'required');
				$(this).parent('td').siblings('th').children('.obligatory').hide();
			});
		}
	};
	
	// zobrazeni nebo skryti radku s polozkou na zaklade podminky
	$.fn.setShown = function(condition){
		if(condition){
			$(this).each(function(){
				$(this).parents('tr:first').show();
			});
		} else {
			$(this).each(function(){
				$(this).parents('tr:first').hide();
			});
		}
	}
})(jQuery);
