var supported = (document.getElementById || document.all);

if (supported)
{
	document.write("<STYLE TYPE='text/css'>");
	document.write(".internalSubmenuSubItems {display: none}");
	document.write("</STYLE>");

	var shown = new Array();
	for (var i=1;i<=shown.length;i++)
	{
		shown[i+1] = false;
	}

}

function blocking(i)
{
	if (!supported)
	{
		alert('Dieser Link blendet in standardkonformen Browsern Listen ein und aus. Ihr Browser zeigt alle Einträge sofort an.');
		return;
	}
	shown[i] = (shown[i]) ? false : true;
	current = (shown[i]) ? 'block' : 'none';
	if (document.getElementById)
	{
		document.getElementById('internalSubmenuSubItems'+i).style.display = current;
	}
	else if (document.all)
	{
		document.all['internalSubmenuSubItems'+i].style.display = current;
	}
}
