$(document).ready(function(){
	setCaptchaButton();
});

setCaptchaButton = function(){

	$('#captchaArea a').click( function() {
		$.ajax({
			type:       "GET",
			url:        '/wp-content/mu-plugins/cryptographp/crypt.html',
			success:    function(p_sMsg) {
				$('#captchaArea').html(p_sMsg);
			}
		});
	});
}