if (typeof(jQuery) == 'function') {
	jQuery(document).ready(function($){
		if ($.fn.cdcaptcha) {
			$.fn.cdcaptcha.globalDefaults = ({
				headerText : 'Captcha',
				infoText : 'Proves you\'re human and slide to the right to unlock it, then click on the green \'Send Registration\' button below.',
				lockedText : 'Locked',
				unlockedText : 'Unlocked',
				uitheme : 'ui-lightness',
				autoFormSubmit : false,
				slideCaptchaUp : 0
			});
			$('form[name="adminForm"]').cdcaptcha({
				prependElement : 'fieldset:last',
				position : 'after',
				random : 'LZEWwll4qHk3xofa7g0Aam64Zm6bW',
				scope : 'com_virtuemart'
			});
		} else {
			alert('Captcha script is blocked!');
				return false;
			}
		});
	} else {
		alert("Core Design Captcha plugin: Missing jQuery JS!");
	}