window.onload=function(){
	if (!document.getElementById) return;
	var r=document.getElementsByTagName('tr');
	var l=r.length
	for (i=0;i<l;i++){if (i%2 == 1){} else {r[i].className='altrow';}}
}
function toggleContentVisibility(whichDiv){
	if (!document.getElementById(whichDiv)) return;
	document.getElementById(whichDiv).style.display = document.getElementById(whichDiv).style.display == 'block'? 'none':'block';
	document.getElementById('icon'+whichDiv).src = document.getElementById('icon'+whichDiv).src == 'http://'+window.location.host+'/fileadmin/_img/ico/ico_open-menuitem_9x9.gif'?'http://'+window.location.host+'/fileadmin/_img/ico/ico_active-menuitem_9x9.gif':'http://'+window.location.host+'/fileadmin/_img/ico/ico_open-menuitem_9x9.gif';
}
