// JavaScript Document

//digg投票

//加载评论

//统计数值
if (window.articleID) {
	$.ajax({url:"/include/ajax.asp?act=merchShow&articleID="+ _articleID +"", type:"GET", dataType:"xml", timeout:8000, 
	success:function(xml){//alert(xml);
	if (xml) {
		var voteUp = $(xml).find("item:first").find("voteNum").text();
		var replyNum = $(xml).find("item:first").find("replyNum").text();
		var hitNum = $(xml).find("item:first").find("hitNum").text();
		var userImg = $(xml).find("item:first").find("userImg").text();
		$(".art_diggNm").html(voteUp.toString());
		$(".art_reply_num").html(replyNum.toString());
		$(".art_hit_num").html(hitNum.toString());
	}//End if
	}//End function
	});
}
//加载局部内容
$.get("/include/ajax.asp?act=merch&merchID="+ _merchID +"&preUrl="+ _ug +"",function(data){
	if (data) {	
		var datas = data.split("$|$");
		//$(".merchInfoRight").html(datas[0]);	
		$(".merchInfoBottom").html(datas[1]);	
	}
});

//文章中的链接都新开窗口
$(".artBody a").attr("target","_blank");



