function expandText(el){
	if (el.parentNode.firstChild.style.display =='block'){
		el.parentNode.firstChild.style.display = 'none';
		el.parentNode.firstChild.nextSibling.firstChild.nodeValue='[+]';
	} else {
		el.parentNode.firstChild.style.display = 'block';
		el.parentNode.firstChild.nextSibling.firstChild.nodeValue='[-]';
	}
}
