if (typeof(jQuery) == 'function') {
	jQuery(document).ready(function($){
		if ($.fn.cdcaptcha) {
		
			$.fn.cdcaptcha.globalDefaults = ({
				headerText : 'Captcha',
				infoText : 'Przesuń, aby odblokować.',
				lockedText : 'Zablokowane',
				unlockedText : 'Odblokowane',
				uitheme : 'start',
				autoFormSubmit : false,
				slideCaptchaUp : 0
			});
			
			$('form[name="cdlogin_form_login"]').cdcaptcha({
				prependElement : 'fieldset.input',
				position : 'after',
				random : 'YmKBKzmkHhHrvurpZh1X',
				scope : 'mod_cdlogin'
			});
		}
		});
	}