var neoLearnToCVERSION = '2005020501';

function toggle_collapse (a) {
	var ol = a.nextSibling;
	while (ol) {
		if (ol.tagName && (ol.tagName.toLowerCase() == 'ol')) {
			break;
		} else {
			ol = ol.nextSibling;
		}
	}
	if (a.innerHTML == '▼') {
		a.innerHTML = '▶';
		ol.style.display = 'none';
	} else {
		a.innerHTML = '▼';
		ol.style.display = 'block';
	}
	return false;
};
