// JavaScript Document
function setTab(name,num,n){
 for(i=1;i<=n;i++){
  var menu=document.getElementById(name+i);
  var con=document.getElementById(name+"_"+"con"+i);
  menu.className=i==num?"nav_now":"";
  con.style.display=i==num?"block":"none"; 
 }
}

//按比例限制图片大小
function ReImgSize(){
	var areaWidth = 100;
	for (i=0;i<document.images.length;i++) {
		if (document.images[i].width>areaWidth && document.images[i].parentNode.id=="newsImg") { //图片尺寸最大不能超过的值
			document.images[i].width=areaWidth;  //调整尺寸   
            document.images[i].height=(document.images[i].height*areaWidth)/document.images[i].width;
		}
	}
}
