//给span._FeedbackCount载入评论数量
$(function(){
	var V_resID="";
	var F_obj=$("span._FeedbackCount");
	F_obj.each(function(){
		V_resID+=this.title+",";
	});
	if (V_resID!=""){
		$.post("/res/blog/feedback.js.asp",
			{Ids:V_resID,type:"res"},
			function(d){
				eval("var data="+d);
				F_obj.each(function(i){
					$(this).html(data["id"+this.title].toString());
					this.title="发表评论";
				});
			}
		);
	}
});
