$("#automat").click(function(){
	 $("#otherCat2 input[type='text']").each(function(i){
	   $(this).val(i+1);
	 });			 
});
$("#zero").click(function(){
	 $("#otherCat2 input[type='text']").each(function(i){
	   $(this).val("0");
	 });			 
});/**/
$("#automat2").click(function(){
	 $("#otherCat3 tr td input[type='text']").each(function(i){
	   $(this).val(i+1);
	 });			 
});
$("#zero2").click(function(){
	 $("#otherCat3 tr td input[type='text']").each(function(i){
	   $(this).val("0");
	 });			 
});
