// Check captcha
$(document).ready(function() {
	$('#captchaLoading').hide();
	$('#captcha').blur(function(){
	  $('#captchaLoading').show();
      $.post("http://www.love-cost.com/index.php/ajax/checkcaptcha", {
        captcha: $('#captcha').val()
      }, function(response){
        $('#captchaResult').fadeOut();
        setTimeout("finishAjax('captchaResult', '"+escape(response)+"')", 400);
      });
    	return false;
	});
	$('#captcha').blur(function(){
	  $('#captchaLoading').show();
      $.post("http://www.love-cost.com/index.php/ajax/checkcaptcha", {
        captcha: $('#captcha').val()
      }, function(response){
        $('#captchaResult').fadeOut();
        setTimeout("finishAjax('captchaResult', '"+escape(response)+"')", 400);
      });
    	return false;
	});
	$('#captcha').focus(function(){
    $('#captchaResult').hide(); 
	});
});

function finishAjax(id, response) {
  $('#captchaLoading').hide();
  $('#'+id).html(unescape(response));
  $('#'+id).fadeIn();
} //finishAjax
