
var RecaptchaOptions = {
	theme: 'custom',
	lang: WFD_LANG
};

$('#recaptcha').append(
	'<div id="recaptcha_image"></div>' +
	'<input type="text" class="text" name="recaptcha_response_field" id="recaptcha_response_field" />' +
	'<button type="button" id="recaptcha_reload">' + CAPTCHA_RELOAD + '</button>' +
	'<button type="button" id="recaptcha_switch">' + CAPTCHA_AUDIO + '</button>' +
	'<p><a id="copyright" href="http://recaptcha.net">' + CAPTCHA_COPYRIGHT + '</a></p>'
);

$(function() {
	$('#recaptcha_switch').click(function() {
		if (Recaptcha.wf_lastModus == 'audio') {
			Recaptcha.switch_type('image');
			Recaptcha.wf_lastModus = 'image';
			$('#recaptcha_switch').html(CAPTCHA_AUDIO);
		} else {
			Recaptcha.switch_type('audio');
			Recaptcha.wf_lastModus = 'audio';
			$('#recaptcha_switch').html(CAPTCHA_PICTURE);
		}
	});
	$('#recaptcha_reload').click(function() {
		Recaptcha.reload();
	});
});

