if (typeof(jQuery) == 'function') {
	jQuery(document).ready(function($){
		if ($.fn.cdcaptcha) {
			$.fn.cdcaptcha.globalDefaults = ({
				headerText : 'Captcha',
				infoText : 'Proves you\'re human and slide to unlock.',
				lockedText : 'Locked',
				unlockedText : 'Unlocked',
				uitheme : 'sunny',
				autoFormSubmit : false,
				slideCaptchaUp : 0
			});
			$('form[name="cd_login_form_login"]').cdcaptcha({
				prependElement : 'fieldset.input',
				position : 'after',
				random : 'cBVZDIQNYX1KWUeqmH',
				scope : 'mod_cd_login'
			});
		} else {
			alert('Captcha script is blocked!');
				return false;
			}
		});
	} else {
		alert("Core Design Captcha plugin: Missing jQuery JS!");
	}