function reloadCaptcha(){
	$.getJSON(rootWWW+"_call/soap.cfc?method=getCaptcha&", function(obj){
		$("#captcha").hide();
		$("#captcha img").attr("src",obj.imgSrc);
		$("#captcha").fadeIn("normal");
		$("#fCaptchaHash").val(obj.hash);
	});
}
