function setImageWidth() {
	var newsImg, pro="";
	newsImg=document.getElementById("detail").getElementsByTagName("img");
	for(i=0;i<newsImg.length;i++)
	{
		if(newsImg[i].width > 450)
		{
			newsImg[i].style.width = 450;
		}
	}
}

/*
 * 检查新闻是否所属专题，如没有则隐藏相关专题表格
*/
function checkSpecial()
{
	str = aboutSpecial.innerHTML;
	if(str == '' || str == '<!--loyaa_category:special-->')
	{
		specialTable.style.display = 'none';
	}
	setImageWidth();
}
