function goReg() {
	reg = $('.registration');
	offset = reg.offset().top - 10;
	$('html, body').animate({scrollTop:offset}, 300);
}
function checkPaymentType(inp) {
	pt = $('#paymentType')
	if ($(inp).attr('id') == 'beznal') {
		if (pt.height()!=290) {
			pt.animate({height:290},200)
			pt.find('div.cashlessForm').fadeIn(200);
            $('.reg_accept').show();
            $('#wm_wallet').hide();
            $('#ya_wallet').hide();
		}
	} else {
		if (pt.height()!=112) {
			pt.animate({height:112},200)
			pt.find('div.cashlessForm').fadeOut(200);
            $('.reg_accept').hide();
            $('#wm_wallet').show();
            $('#ya_wallet').show();
		}
	}
}