var speed=3;
var currentpos=0,alt=1,curpos1=0,curpos2=-1;
function initialize(){
startit();
}
function scrollwindow(){
if (document.all)
temp=document.body.scrollLeft;
else
temp=window.pageXOffset;
if (alt==0) {
alt=1;
curpos2=temp;
}
else {
alt=0;
curpos1=temp;
}
if...