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