$(document).ready( function(){
	$(".test-container").hide();
	$(".test-container").load("/sites/all/modules/avanti/finnallefront/cap/get.php", function(){
		$(".test-container").show(500);
	});
	
	$("#refresh-captcha-button").click(function(){
		$("#refresh-captcha-button").hide(200, function(){
			$(".test-container").hide(300, function(){
			$(".test-container").load("/sites/all/modules/avanti/finnallefront/cap/get.php", function(){
				$(".test-container").show(300, function(){
					$("#refresh-captcha-button").show(200);
				});
			});
		});	
		});
		
		return false;
	});
});
