/**
 * 김무건 || Elkha (elkha1914@hotmail.com)
 * http://elkha.kr
 * 2010-09-07
 **/

(function($){
	$(document).ready(function(){
		$("#w_uid").focus();

		$("#w_oid_open").click(function(){
			$(this).parents("form").toggle()
			.next("form").toggle()
			.find("#w_oid_close").attr({"checked":"checked"});
		});
		$("#w_oid_close").click(function(){
			$(this).parents("form").toggle()
			.prev("form").toggle()
			.find("#w_oid_open").attr({"checked":""});
		});
	});
})(jQuery);

