/*点击显示
function ShowDiv(ObjID) {
	for(var i=1;i<5;i++) {
		if(document.getElementById("title_"+i)) {
			document.getElementById("title_"+i).className=(ObjID==i)?"cur":"";
			document.getElementById("newsul_"+i).style.display=(ObjID==i)?"block":"none";
		} else return;
	}
}*/
/*切换图层
function show(curr,i){
  //a
  var aObjs = document.getElementById("detailtitle").getElementsByTagName("a");
  for(var j=0;j<aObjs.length;j++){
    aObjs[j].className="";
  }
  curr.className="cur";
  //ul
  var ulObj=document.getElementById("show_"+i);
  var sfEls = document.getElementById("detailshow").getElementsByTagName("div");
  for(var j=0;j<sfEls.length;j++){
    sfEls[j].style.display="none";
  }
  ulObj.style.display="block";
}*/


//图片滚动列表 mengjia 070927
var Speed_1 = 10; //速度(毫秒)
var Space_1 = 20; //每次移动(px)
var PageWidth_1 = 122* 4; //翻页宽度
var interval_1 = 7000; //翻页间隔
var fill_1 = 0; //整体移位
var MoveLock_1 = false;
var MoveTimeObj_1;
var MoveWay_1="right";
var Comp_1 = 0;
var AutoPlayObj_1=null;
function GetObj(objName){if(document.getElementById){return eval('document.getElementById("'+objName+'")')}else{return eval('document.all.'+objName)}}
function AutoPlay_1(){clearInterval(AutoPlayObj_1);AutoPlayObj_1=setInterval('ISL_GoDown_1();ISL_StopDown_1();',interval_1)}
function ISL_GoUp_1(){if(MoveLock_1)return;clearInterval(AutoPlayObj_1);MoveLock_1=true;MoveWay_1="left";MoveTimeObj_1=setInterval('ISL_ScrUp_1();',Speed_1);}
function ISL_StopUp_1(){if(MoveWay_1 == "right"){return};clearInterval(MoveTimeObj_1);if((GetObj('ISL_Cont_1').scrollLeft-fill_1)%PageWidth_1!=0){Comp_1=fill_1-(GetObj('ISL_Cont_1').scrollLeft%PageWidth_1);CompScr_1()}else{MoveLock_1=false}
AutoPlay_1()}
function ISL_ScrUp_1(){if(GetObj('ISL_Cont_1').scrollLeft<=0){GetObj('ISL_Cont_1').scrollLeft=GetObj('ISL_Cont_1').scrollLeft+GetObj('List1_1').offsetWidth}
GetObj('ISL_Cont_1').scrollLeft-=Space_1}
function ISL_GoDown_1(){clearInterval(MoveTimeObj_1);if(MoveLock_1)return;clearInterval(AutoPlayObj_1);MoveLock_1=true;MoveWay_1="right";ISL_ScrDown_1();MoveTimeObj_1=setInterval('ISL_ScrDown_1()',Speed_1)}
function ISL_StopDown_1(){if(MoveWay_1 == "left"){return};clearInterval(MoveTimeObj_1);if(GetObj('ISL_Cont_1').scrollLeft%PageWidth_1-(fill_1>=0?fill_1:fill_1+1)!=0){Comp_1=PageWidth_1-GetObj('ISL_Cont_1').scrollLeft%PageWidth_1+fill_1;CompScr_1()}else{MoveLock_1=false}
AutoPlay_1()}
function ISL_ScrDown_1(){if(GetObj('ISL_Cont_1').scrollLeft>=GetObj('List1_1').scrollWidth){GetObj('ISL_Cont_1').scrollLeft=GetObj('ISL_Cont_1').scrollLeft-GetObj('List1_1').scrollWidth}
GetObj('ISL_Cont_1').scrollLeft+=Space_1}
function CompScr_1(){if(Comp_1==0){MoveLock_1=false;return}
var num,TempSpeed=Speed_1,TempSpace=Space_1;if(Math.abs(Comp_1)<PageWidth_1/2){TempSpace=Math.round(Math.abs(Comp_1/Space_1));if(TempSpace<1){TempSpace=1}}
if(Comp_1<0){if(Comp_1<-TempSpace){Comp_1+=TempSpace;num=TempSpace}else{num=-Comp_1;Comp_1=0}
GetObj('ISL_Cont_1').scrollLeft-=num;setTimeout('CompScr_1()',TempSpeed)}else{if(Comp_1>TempSpace){Comp_1-=TempSpace;num=TempSpace}else{num=Comp_1;Comp_1=0}
GetObj('ISL_Cont_1').scrollLeft+=num;setTimeout('CompScr_1()',TempSpeed)}}
function picrun_ini(){
GetObj("List2_1").innerHTML=GetObj("List1_1").innerHTML;
GetObj('ISL_Cont_1').scrollLeft=fill_1>=0?fill_1:GetObj('List1_1').scrollWidth-Math.abs(fill_1);
GetObj("ISL_Cont_1").onmouseover=function(){clearInterval(AutoPlayObj_1)}
GetObj("ISL_Cont_1").onmouseout=function(){AutoPlay_1()}
AutoPlay_1();
}
//产品展示滚动图片结束

/*模拟DIV*/
var iws=false;
function shlist(){
  document.getElementById("t_select-list").style.display=document.getElementById("t_select-list").style.display=="block"?"none":"block";
}
/*function changesever(ts){
  document.getElementById("t_selected").innerHTML="---"+ts.innerHTML+"---";
  shlist();
  //alert(document.getElementById("selected").rel);
}*/
function cws(val){
  iws=val;
}
function hlist(){
	if(!iws)document.getElementById("t_select-list").style.display="none";
}

/* 显示时间 */
function show_time(){
  var Timer=new Date()
  var hours=Timer.getHours()
  var minutes=Timer.getMinutes()
  var seconds=Timer.getSeconds()
  var noon="AM"
  if (hours>12){
    noon="PM"
    hours=hours-12
  }
  if (hours==0) hours=12
  if (minutes<=9)
    minutes="0"+minutes
  if (seconds<=9)
    seconds="0"+seconds
  //change font size here to your desire
  var myclock = hours+":"+minutes+":"+seconds+" "+noon;
  $('#time_show').html(myclock);
  setTimeout("show_time()",1000);
}

/*三级菜单*/
function menuFix() {
  var sfEls = document.getElementById("nav");
  if(!sfEls) {
    return false;
  }
  sfEls = sfEls.getElementsByTagName("li");
  if(!sfEls) {
    return false;
  }
  for(var i=0;i<sfEls.length;i++) {
		var ulss=sfEls[i].getElementsByTagName("ul");	
		if(ulss.length>0) {
		sfEls[i].className="hadChild";
		}
	}
  for (var i=0; i<sfEls.length; i++) {
    sfEls[i].onmouseover=function() {
      this.className+=(this.className.length>0? " ": "") + "show";
    }
    sfEls[i].onmouseout=function() {
      this.className=this.className.replace(new RegExp("( ?|^)show\\b"), "");
    }
  }
}
window.onload=menuFix;
/*$(function(){
	$('#nav>li>ul').each(function(i){
		$(this).prev('a').toggle(function() {
				$(this).parent().addClass("show")
			}, function() {
				$(this).parent().removeClass("show")
			});
	});
})
$(function(){
  $('#nav li ul li').mouseover(function(event){
    $(this).addClass("show");
  }).mouseout(function(){
    $(this).removeClass("show");
  });
});*/

$(function(){
  $('.prolistul li').mouseover(function(event){
    $(this).addClass("hover");
  }).mouseout(function(){
    $(this).removeClass("hover");
  });
});
