//意见反馈
function advice(){
	if(event.ctrlKey && window.event.keyCode == 13){
		enterAdvice();
	}
}

//添加新评论
function enterAdvice(){ 	
	$content=$('#content').val();
	$.ajax({
		type: "POST",
		dataType: "html",
		url: "/advice/add",
		data: "content="+$content,		
		success: function(infos){
			
			if(infos=='1'){
				jAlert("", "不说点什么？", "系统提示", "",  "1");
			}else if(infos=='2'){
				jAlert("", "请先登录", "系统提示", "",  "1");
			}else if(infos=='3'){
				jAlert("", "您发言过于频繁，请先休息一下喝杯咖啡吧！", "系统提示", "",  "1");
			}else{
				jAlert("", "感谢您提出的意见，我们会尽快给您回复！", "系统提示", "",  "1");
			    $('#content').val('');
			}
		}			
	});	

}

function show() { 
	$("#guest_txt").slideDown().toggle();
}
