var _author = $.cookie('author');

	if(_author!=null){
		var _email = $.cookie('email');
		var _url = $.cookie('url');

		$("#author").val(_author);
		$("#email").val(_email);
		$("#url").val(_url);
		
		$("#inputtxt").css("display","none");
		$("#cookieinfo").css("display","block");
		$("#author_id").html(_author);

		$("#author_info").toggle(function(){	
			$("#inputtxt").slideDown();
			$("#author_info").html("取消變更 &raquo;");	
		}, function(){
			$("#inputtxt").slideUp();
			$("#author_info").html("變更身分 &raquo;");
		});
	}else{
		$("#cookieinfo").css("display","none");
	}
	
	$("#commentform :button[name=送出]").click(function(){
		var _authorValue = $("#author").val();
		if(_authorValue!=""){
			$.cookie('author', _authorValue);
		}
		var _emailValue = $("#email").val();
		if(_emailValue!=""){
			$.cookie('email', _emailValue);
		}
		var _urlValue = $("#url").val();
		if(_urlValue!=""){
			$.cookie('url', _urlValue);
		}

		$("#commentform").submit();

	});