// JavaScript Document
function over(obj,dir,speed)
{
	obj.trueSpeed=true;
	obj.scrollAmount=1;
	obj.direction=dir;
	obj.scrollDelay=speed;
	obj.stop();
	obj.start();
}

function out(obj)
{
	obj.trueSpeed=true;
	obj.scrollAmount=1;
	obj.scrollDelay=50;
	obj.stop();
	obj.start();
	}
