$(document).ready(function() {
	inputinfo();
	$('.gomb').each( function() {
		$(this).mouseover(function () {
			if (!$(this).hasClass('disabl')) {
				$(this).animate({ 
				        opacity: 0.5,
				      }, 20 );
				}
			}).mouseout(function () {
				if (!$(this).hasClass('disabl')) {
					$(this).animate({ 
					        opacity: 1,
					      }, 300 );
				}
			});
	}); /// each	
	}
);
