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

$('#recaptcha').append(
	'<div id="recaptcha_image"></div>' +
	'<label for="recaptcha_response_field">Hier die Lösung eintragen</label>' +
	'<input type="text" class="text" name="recaptcha_response_field" id="recaptcha_response_field" />' +
	'<button type="button" id="recaptcha_reload">Neues CAPTCHA laden</button>' +
	'<button type="button" id="recaptcha_switch">CAPTCHA zum Anhören</button>' +
	'<a id="copyright" href="http://recaptcha.net">Ein Service von reCAPTCHA</a>'
);

$(function() {
	$('#recaptcha_switch').click(function() {
		if (Recaptcha.wf_lastModus == 'audio') {
			Recaptcha.switch_type('image');
			Recaptcha.wf_lastModus = 'image';
			$('#recaptcha_switch').html('CAPTCHA zum Anhören');
		} else {
			Recaptcha.switch_type('audio');
			Recaptcha.wf_lastModus = 'audio';
			$('#recaptcha_switch').html('Bild-CAPTCHA');
		}
	});
	$('#recaptcha_reload').click(function() {
		Recaptcha.reload();
	});
});

