// JavaScript Document
var speed, currentpos=curpos1=-1,alt=1,curpos2=0;

function initialize()

{
	if (window.parent.scrollspeed1!=0)
	{
	speed=window.parent.scrollspeed1;
	scrollwindow();
	}
}


function scrollwindow()

{
	temp=(document.all)? document.body.scrollLeft : window.pageXOffset;
	alt=(alt==0)? 1 : 0;
	if (alt==0)
	curpos1=temp;
	else
	curpos2=temp;
	window.scrollBy(speed,0);
}

setInterval("initialize()",5);