// JavaScript Document
//zhzh.cq.cn
// JavaScript Document
function setTab(m,n){
 var tli=document.getElementById("menu"+m).getElementsByTagName("li");
 var mli=document.getElementById("main"+m).getElementsByTagName("ul");
 for(e=0;e<tli.length;e++){
  tli[e].className=e==n?"hover":"";
  mli[e].style.display=e==n?"block":"none";
 }
}

function change_con(ww,num,hh)
{
	var obj=ww
	for(var ii=1;ii<=num;ii++)
	{
		document.getElementById(obj+ii).className=obj+"off";
		document.getElementById(obj+ii+ii).style.display="none";
	}
	document.getElementById(obj+hh).className=obj+"on";
	document.getElementById(obj+hh+hh).style.display="";
}

//改变图片大小
function resizepic(o)
{ 
var maxwidth=690;   //定义最大宽度
var maxheight=800;  //定义最大高度
var a=new Image();
a.src=o.src
if(a.width > maxwidth)
{
  o.style.width=maxwidth;
}
if (a.height> maxheight)
{
  o.style.height=maxheight;
 }
}
//无级缩放图片大小
function bbimg(o)
{
 // var zoom=parseInt(o.style.zoom, 10)||100;
//  zoom+=event.wheelDelta/12;
//  if (zoom>0) o.style.zoom=zoom+'%';
//  return false;
//return false;
}

function setcurrclass(){
	var local=window.location.href.toLowerCase(); 
	if(local.indexOf("/rcg/")>0){
			change_con('menu',9,8);
			return;
	}
	if(local.indexOf("/intr/")>0){
			change_con('menu',9,2);
			return;
	}
	if(local.indexOf("/news/")>0){
			change_con('menu',9,3);
			return;
	}
	if(local.indexOf("/obj/")>0){
			change_con('menu',9,4);
			return;
	}
	if(local.indexOf("/deve/")>0){
			change_con('menu',9,5);
			return;
	}
	if(local.indexOf("/property/")>0){
			change_con('menu',9,6);
			return;
	}
	if(local.indexOf("/culture/")>0){
			change_con('menu',9,7);
			return;
	}
	if(local.indexOf("/hr/")>0){
			change_con('menu',9,8);
			return;
	}
	change_con('menu',9,1);

}
