// JavaScript Document

//加载文章相关信息
$(function(){
	var userName = GetCookie("usernameJS");
	if (userName) {
		$("#replyUsername").val(userName);
		$("#replyUserpass").val("******");
	} else {
		$("#replyUsername").val("游客");
		$("#replyUserpass").val("");
	}
	
	$.get("/include/ajax.asp?act=XiangGuan&articleID="+ _articleID +"&preUrl="+ _ug +"",function(data){
		if (data) {	
			var datas = data.split("$|$");
			$(".newsTopGG").html(datas[0]);	
			//$(".showNewsRgiht").html(datas[1]);	
			//$(".replyAd").html(datas[2]);	
			//$(".xgBody1").html(datas[3]);	
			//$(".xgBody2").html(datas[4])
		}
	});
	
	$(function(){	
		//缩放图片
		$(".artBody img").each(function(i){
			var maxWidth = 620;
			var maxHeight = 1200;
			if(this.complete || this.readyState =="complete") { DrawImage(this,maxWidth,maxHeight); }
			else {
				this.onreadystatechange = function(){ 
					if(this.readyState =="complete") { DrawImage(this,maxWidth,maxHeight); }
				} 
			}
		});
		
	});
});
