$(function(){
	comments=$(".allscomments")
	for(i=0;i<comments.length;i++)
	{   
		var id=comments[i].id.slice(7);
		var _this=$(comments[i]).parent().parent().parent().parent();
		if(_this.find("h3 a").attr("href").indexOf("http://www")>=0)
		{
			$.get("http://www.yxlady.com/cc.asp?id="+id, new getcc(id));
		}
		else
		{
			$.get("http://www.yxlady.com/yxweb2/cc2.asp?id="+id, new getcc(id));
		}
		var this_src=_this.find("h3 a").attr("href");
		var this_titletext="文章标题："+_this.find("h3 a").text()+"\n\n点击浏览全文";
		_this.find(".pic").wrapInner("<a href=\""+this_src+"\" target=\"_blank\"></a>");
		_this.find(".pic img").attr("alt",this_titletext);
		_this.find(".pic a").attr("title",this_titletext);
		_this.find(".extend .cL a").attr("href",this_src);
		_this.find(".extend .cL a").attr("title",this_titletext);
		_this.find(".extend .cL a").attr("target","_blank");
		
	}
})
function getcc(id){
	this.id=id
	this.fun=function(data){
		$("#comment"+id).html(data)
	}
	return this.fun
}