<DIV id=sc1 class=myDIV onmouseover=isScroll(1) style='VISIBILITY: visible' onmouseout=isScroll(0)>
<table border=0 cellspacing=0 cellpadding=0 width=560 align=center>
。。。
</table>
</DIV>
<DIV id=sc2 class=myDIV onmouseover=isScroll(1) style='VISIBILITY: hidden' onmouseout=isScroll(0)>
<table border=0 cellspacing=0 cellpadding=0 width=560 align=center>
。。。
</table>
</DIV>
<SCRIPT>
var sc1=document.getElementById('sc1');
var sc2=document.getElementById('sc2');
//设置显示哪个层的变量
var sL=1;
//设置动与不动的变量
var iS=0;
//设定显示时间
function setTime()
{
if(iS==0)
{
if(sL%2==1)
{
cs1(sc1,1);
cs1(sc2,0);
setTimeout('setTime()',5000);
}
else{
cs1(sc1,0);
cs1(sc2,1);
setTimeout('setTime()',5000);
}
sL++;
}
else
{
setTimeout('setTime()',1000);
}
}
//显示函数
function cs1(a,b)
{if(a==null)return;
a.filters.revealTrans.apply();
if(b==1) a.style.visibility='visible';
else a.style.visibility='hidden';
a.filters.revealTrans.play();}
//设定is变量
// v==1 不滚动 v==0 滚动
function isScroll(v){
iS=v;
}
</SCRIPT>