$(document).ready(function(){
	
	loadCaptcha();
						 
  });
  
  function loadCaptcha() {
  $("#captcha_plus").css("display","none");
  $("#captcha_here").html('K&oacute;d bet&ouml;lt&eacute;se...<br />K&eacute;rlek v&aacute;rj...');
	$.get("captcha_files/captcha_table.php", {  },
	  function(data){
		
		$("#captcha_here").html(data);
		$("#captcha_plus").html('<a href="javascript:loadCaptcha()"><img src="captcha_files/refresh.gif" border="0" alt="(New)" /></a><br /><a href="captcha_sound.php"><img src="captcha_files/audio_icon.gif" border="0" alt="(Audio)" /></a>');
		$("#captcha_plus").css("display","block");
	});
	

  }