
function initPage()
{
oMyDiv = document.getElementById("bilder");

isScrolling = false;

DX = 50; 
DELAY = 100;

};

function scroll2Left(evt)
{
	if (evt)
		isScrolling = true;

	if (isScrolling)
	{
		if (document.getElementById("bilder").scrollLeft > 0)
		{
			document.getElementById("bilder").scrollLeft -= 20;
			window.setTimeout("scroll2Left()", 100);
		};
	};
};

function scroll2Right(evt)
{
		if (evt)
			isScrolling = true;
		
		if (isScrolling)
		{		
			document.getElementById("bilder").scrollLeft += 20;
			window.setTimeout( "scroll2Right()", 100 );
		};

};

function stopScrolling()
{
	isScrolling = false;
}

function change_image(){
	
	
}


