// JavaScript Document

function nTabs(thisObj,Num){
if(thisObj.className == "active")return;
var tabObj = thisObj.parentNode.id;
var tabList = document.getElementById(tabObj).getElementsByTagName("li");
for(i=0; i <tabList.length; i++)
{
  if (i == Num)
  {
   thisObj.className = "active"; 
      document.getElementById(tabObj+"_Content"+i).style.display = "block";
  }else{
   tabList[i].className = "normal"; 
   document.getElementById(tabObj+"_Content"+i).style.display = "none";
  }
} 
}
function tabArea(thisObj,Num){
if(thisObj.className == "active")return;
var tabObj = thisObj.parentNode.id;
var tabList = document.getElementById(tabObj).getElementsByTagName("li");
for(i=0; i <tabList.length; i++)
{
  if (i == Num)
  {
   thisObj.className = "active"; 
      document.getElementById(tabObj+"_Content"+i).style.display = "block";
  }else{
   tabList[i].className = "normal"; 
   document.getElementById(tabObj+"_Content"+i).style.display = "none";
  } 
}
if (Num == 0) {
	 $("#quyuMore").html("<a class='more02' href='http://net.cifco.com.cn/area/northeast_china.shtml' target='_blank'>| 更多>></a>");	
}
if (Num == 1) {
	$("#quyuMore").html("<a class='more02' href='http://net.cifco.com.cn/area/north_china.shtml' target='_blank'>| 更多>></a>");
}
if (Num == 2) {
	$("#quyuMore").html("<a class='more02' href='http://net.cifco.com.cn/area/central_china.shtml' target='_blank'>| 更多>></a>");
}
if (Num == 3) {
	$("#quyuMore").html("<a class='more02' href='http://net.cifco.com.cn/area/east_china.shtml' target='_blank'>| 更多>></a>");
}
if (Num == 4) {
	$("#quyuMore").html("<a class='more02' href='http://net.cifco.com.cn/area/shenzhen_china.shtml' target='_blank'>| 更多>></a>");
}
}
