// JavaScript Document
function toggleCategoryList() {
	var o = document.getElementById('CategoryBox950');

	o.style.display = (o.style.display != 'none') ? 'none' : 'block';
		o.parentNode.className = (o.style.display != 'none')? 'none':'Collapse';

	return false;
}