
			$(document).ready(function(){		
			$('#registracia').click(function(){
				if($(this).is(':checked')){
					$('#box_registracia').slideDown();
				}
				else{
					$('#box_registracia').slideUp();
				}
			});
			});
			function setDeliveryType(boxid){	
			$('.payment_box').css('display','none');
			$('.payment_box input').attr('checked', false);
			$('#' + boxid).css('display','block');
			$('#' + boxid + ' input:first').attr('checked', 'checked');
			}
			
			function toogleBlock(zobraz,skry){	
			$('#'+zobraz).slideDown();
			$('#'+skry).slideUp();
			}
			
			function checkCustomerZone(){
			if($('#zakaznik_0:checked').length==0 && $('#zakaznik_1:checked').length==0){
				alert('Zvožte typ zákazníka.');
				return false;
			}
			
			return true;
			}
