본문으로 바로가기
<script>
	function open(){
		//$("#floatralking .box").width(230);
		$("#floatralking .box").animate({'width': '230px'}, "fast");
		$(".open").hide();
		$(".close").show();
	}

	function close(){
		//$("#floatralking .box").width(50);
		$("#floatralking .box").animate({'width': '50px'}, "fast");
		$(".open").show();
		$(".close").hide();
	}
  </script>