// JavaScript Funktionen für KLV-Rotenburg.de

function selectLine (id, action, colorNormal, colorSelect)
{
	if (action == 'in')
	{
		
		document.getElementById(id).style.backgroundColor = colorSelect;
		document.getElementById(id).style.cursor = 'pointer';
		
		document.getElementById("link_"+id).style.color = 'FFFF66';
		document.getElementById("link_"+id).style.backgroundColor = '6969CD';
	}
	else if (action == 'out')
	{
		document.getElementById(id).style.backgroundColor = colorNormal;
		document.getElementById(id).style.cursor = 'default';

		document.getElementById("link_"+id).style.color = '6969CD';
		document.getElementById("link_"+id).style.backgroundColor = colorNormal;
	}
}

function toggleDivs (idOne, idTwo)
{
	if (document.getElementByID(idOne).style.visibility == 'collapse')
	{
		document.getElementByID(idOne).style.visibility = 'visible';
		document.getElementByID(idTwo).style.visibility = 'collapse';
	}
	else if (document.getElementByID(idOne).style.visibility == 'visible')
	{
		document.getElementByID(idOne).style.visibility = 'collapse';
		document.getElementByID(idTwo).style.visibility = 'visible';
	}
}