//pb

function uitklappen(nummer)
{
	var obj = document.getElementById('divid_'+nummer);
	if (obj)
		$(obj).toggle(100);
//		obj.style.display == 'none' ? obj.style.display = '' : obj.style.display = 'none';
}

function imenu()
{
	var menu = document.getElementById('menu');
	var lis  = menu.getElementsByTagName('LI');

	for (var i=0;i<lis.length;i++)
	{
		lis[i].onmouseover = function () {
			if (this.childNodes.length > 1)
				this.childNodes[1].style.display = 'block';
		}
		lis[i].onmouseout = function () {
			if (this.childNodes.length > 1)
				this.childNodes[1].style.display = 'none';
		}
	}
}

$(document).ready(function (){imenu()});

