if(typeof(Ape.Form) 		== 'undefined') { Ape.Form = {}; }
if(typeof(Ape.Form.Element) == 'undefined') { Ape.Form.Element = {}; }

Ape.Form.Element.Recaptcha = function(public_key, field) {
	var recaptcha_options = {
		theme : 'custom',
		lang  : 'de'
	};
    Recaptcha.create(public_key, 'recaptcha_image', recaptcha_options);
    jQuery('.reload_captcha').bind('click', function() {
    	Recaptcha.reload();
    });
};
