var shiftlefttimer;
var shiftrighttimer;

function shiftleftstart()
{
	document.all['GalleryLayer'].scrollLeft -= 20

	shiftlefttimer = setTimeout("shiftleftstart()",100);


}

function shiftleftstop()
{
	clearTimeout(shiftlefttimer);
	
	return true;
}
function shiftrightstart()
{
	document.all['GalleryLayer'].scrollLeft += 20;

	shiftrighttimer = setTimeout("shiftrightstart()",100);

}

function shiftrightstop()
{
	clearTimeout(shiftrighttimer);

	return true;
}
