var ResATags = $("right").getElementsByTagName("a");

for(var i=0;i<ResATags.length;i++)
{
	AddEvent(ResATags[i]);	
}

function AddEvent(element)
{
	element.onclick = function()
	{	
		//添加事件处理，点击
		
		if(this.name == "bbs")
		{
			isBBSSlected = true;
		}
		else
		{
			isSlected = true;	
		}
		CurrentSlelect.innerHTML = "您选择的是：<b>"+this.innerHTML+"</b>";
		$("channel").value =this.getAttribute("channel");
		//点击修改出现资料后，关闭专区选择区域
		RightTdObj.style.display = "none";
		LeftDivObj.style.width = document.documentElement.clientWidth - 14 + "px";
		ShowHideTag.src = "i/close.gif";
		dealCookie("channel",this.getAttribute("channel"),{expires:30});
		ChannelName = this.innerHTML;
	}
}