var lichtkrant

function $(id)
{
	return document.getElementById(id);
}
	
function init()
{
	lichtkrant = document.getElementById('lichtkrant');
	
	if(lichtkrant!=null)
	{
		lichtkrant.width = lichtkrant.offsetWidth;
		lichtkrant.left = 880;
		setInterval('startLichtkrant()', 20);
	}
} 

function cl(url)
{
	window.location = url;
}

function startLichtkrant()
{  
  	lichtkrant.left -= 1;
  	
  	if(lichtkrant.left < -lichtkrant.width)
  	{
  		lichtkrant.left = 880;
  	}
  	lichtkrant.style.left = (lichtkrant.left + 'px');
}
