﻿function img_resize(){
	$("img.resize").each(function(i){
		var midNum = $(this).attr("title").indexOf("*");
		var maxWidth = $(this).attr("title").substr(0,midNum);
		var maxHeight = $(this).attr("title").substr(midNum+1);
		if(this.complete || this.readyState =="complete") { DrawImage(this,maxWidth,maxHeight);}
		else {
			this.onreadystatechange = function(){ 
				if(this.readyState =="complete") { DrawImage(this,maxWidth,maxHeight); }
			} 
		}
	});
}
function homeGoPage(listKind,ipage,perNum){
	$("#simpleBody"+listKind).html("<br /><br /><br /><br /><center><strong>载入中...</strong></center><br /><br /><br /><br /><br />");
	var ajaxUrlAdd='';
	if (window._authorID && _authorID>0) {ajaxUrlAdd= ajaxUrlAdd + "&userID="+ _authorID +"";}
	if (window._tag && _tag!="") {ajaxUrlAdd= ajaxUrlAdd + "&tag="+ encodeURIComponent(_tag) +"";}
	$.get("/include/ajax.asp?act=artList&listKind="+ listKind +"&ipage="+ ipage +"&perNum="+ perNum + ajaxUrlAdd +"",function(data){
		if (data) {//alert(data);
			$("#simpleBody"+listKind).html(data);
			externallinks();
			img_resize();
		}
	});
}

img_resize();

//内容默认卡片(.win_head)
$(".win_head a.on").each(function(){
	$(this).parents(".win_head").siblings(".win_body").children(".ibody").hide();
	$(this).parents(".win_head").siblings(".win_body").children("."+$(this).attr("rel")).show();
});
//点击卡片.win_head>a
$(".win_head a:has(rel)").click(function(){
	$(this).attr("class","on");
	$(this).siblings("a").attr("class","");
	//$(this).siblings().children("div.onthis").remove();
	//$(this).append('<div class="onthis">&nbsp;</div>');
	var bodyN = "."+ $(this).attr("rel");
	var win_body = $(this).parents(".win_head").siblings(".win_body");
	win_body.children(".ibody").hide();
	win_body.children(bodyN).show();
	return false;
});
window.onload = function (){
	//$.getScript('/wsSitemap.asp?kind=js&smLan=cn');
	//$.getScript('/members/StaticXmlhttpUpdate.asp?fileType=js');
	//$.getScript('/members/getInfoNow.asp?fileType=js');
}