if (typeof(jQuery) == 'function') {
	jQuery(document).ready(function($){
		if ($.fn.cdcaptcha) {
			$.fn.cdcaptcha.globalDefaults = ({
				headerText : 'Dispositivo di sicurezza',
				infoText : 'Trascina a destra per continuare',
				lockedText : 'Stop',
				unlockedText : 'Continua',
				uitheme : 'ui-lightness',
				autoFormSubmit : false,
				slideCaptchaUp : 0
			});
			$('form[name="login"]').cdcaptcha({
				additionalBoxStyle : 'width: auto;',
				random : '9wdf78IrkSEY',
				scope : 'mod_login'
			});
		} else {
			alert('Captcha script is blocked!');
				return false;
			}
		});
	} else {
		alert("Core Design Captcha plugin: Missing jQuery JS!");
	}