document.write('\ \
\ \
\ \
\
\ \
\ \
'); function scroll() { x1 = parseInt(sty1.left); sty1.left = (x1 > xmin1 ? x1 - dx1 : 0) x2 = parseInt(sty2.left); sty2.left = (x2 > xmin2 ? x2 - dx2 : 0) } var dx1, dx2, xmin1, xmin2, sty1, sty2; function init() { dx1=1, dx2=1; xmin1 = 626 - scroller1.offsetWidth; xmin2 = 626 - scroller2.offsetWidth; sty1 = scroller1.style; sty1.left = container1.offsetWidth; sty2 = scroller2.style; sty2.left = container2.offsetWidth; setInterval("scroll()", 20) } window.onload=init;