// JavaScript Document
function codeInput(str){
	$.post("home/codeCheck", {code: str},
   function(data){
	   $("#code_home_response").html(data.icon);
	   if(data.response != "")
	   {
		$("#code_home").css('height','90px');
	   }
	   else
	   {
		$("#code_home").css('height','60px');
	   }
	   $("#code_response").html(data.response);
   }, "json");
}
