// JavaScript Document
$(document).ready(function(){
		 $('.nav li').hover(function(){ $(this).children('ol').css('display','block')},function(){$(this).children('ol').css('display','none')})
		 
		 $('#jianjie h2').mouseover(function(){
				$(this).children('div').css('display','block');	
				$(this).siblings().children('div').css('display','none');	
				$(this).css('background-image','url(/Template/Default/images/ztym_dhb.png)');	
				$(this).siblings().css('background-image','url(/Template/Default/images/ztym_dh.png)');	
											   })	
			
var speed=15; //数字越大速度越慢
var tab=document.getElementById("zhezhao1");
var tab1=document.getElementById("g_demoo1");
var tab2=document.getElementById("g_demoo2");
tab2.innerHTML=tab1.innerHTML;
function Marquee(){
if(tab2.offsetWidth-tab.scrollLeft<=0)
tab.scrollLeft-=tab1.offsetWidth
else{
tab.scrollLeft++;
}
}
var MyMar=setInterval(Marquee,speed);
tab.onmouseover=function() {clearInterval(MyMar)};
tab.onmouseout=function() {MyMar=setInterval(Marquee,speed)};

var tabb=document.getElementById("zhezhao2");
var tab3=document.getElementById("g_demoo3");
var tab4=document.getElementById("g_demoo4");
tab4.innerHTML=tab3.innerHTML;
function Marquee2(){
if(tab4.offsetWidth-tabb.scrollLeft<=0)
tabb.scrollLeft-=tab3.offsetWidth
else{
tabb.scrollLeft++;
}
}
var MyMar2=setInterval(Marquee2,speed);
tabb.onmouseover=function() {clearInterval(MyMar2)};
tabb.onmouseout=function() {MyMar2=setInterval(Marquee2,speed)};
						   
						   })
