function suitPic()
{
	var BEST_WIDTH = 400;
	var regx = /^\d+\.\w/;
	try
	{
		for (i = 0; i < document.images.length; i++)
		{
			var s = document.images[i].src;
			var w = document.images[i].width;
			var h = document.images[i].height;

			if (regx.test(s.substr(s.lastIndexOf("/")+1)) && w > BEST_WIDTH)
			{
				var n = w / BEST_WIDTH;
				document.images[i].width = BEST_WIDTH;
				document.images[i].height = h / n;
				//document.images[i].insertAdjacentHTML("AfterEnd", "<table border=0 width=100% cellspacing=0 cellpadding=0><tr><td style='padding-top: 4' align=center><a href='" + s + "' target=_blank>" + s + "</a>|" + w + " × " + h + "</td></tr></table>");
				document.images[i].insertAdjacentHTML("AfterEnd", "<table border=0 width="+BEST_WIDTH+" cellspacing=0 cellpadding=0 align=center><tr><td style='padding-top: 4' align=right><a href='" + s + "' target=_blank>[点击放大]</a></td></tr></table>");
			}

		}
//		window.setTimeout("suitPic()", 1000);
	}
	catch(e)
	{
//		window.setTimeout("suitPic()", 1000);
	}
}

window.attachEvent("onload",suitPic);