
$(document).ready(function()
{
	$('.captcha-box')
		.each(function(){
			$('.captchaAnswer', this).val($('.captchaHelp', this).val());
		})
		.addClass('out');	
	
	$('.pdbox').pdBox({ minWidth: 540 });
	
	
	var toggleAddress = function(){
		$('#payment1:checked').each(function(){
			$('#address-box').hide();
			$('#jfAddress').attr('disabled', true);
		});
		$('#payment2:checked').each(function(){
			$('#address-box').show();
			$('#jfAddress').attr('disabled', false);
		});
	}
	$('#payment1, #payment2').bind('click', toggleAddress);
	
	toggleAddress();

	$('.more-content').each(function(){
		var $more = $('<a href="#">…více</a>');
		var $that = $(this).before($more).hide();
		$more.bind('click', function(){
			$that.show();
			$(this).remove();
			return false;
		});
	});	
});
