	function ShowarticleContentxibei(id)
	{
		for (var i = 0;i < 5;i++)
		{
			var articlenavxibei = document.getElementById("articlenavxibei" + i);
			var articlecontentxibei = document.getElementById("articlecontentxibei" + i);
			if (i == id)
			{
				articlenavxibei.className = 'china_xianshi';
				articlecontentxibei.style.display = "";
			}
			else
			{
				articlenavxibei.className = 'china_xianshi_current';
				articlecontentxibei.style.display = "none";
			}
		}
	}